Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package robin-map for openSUSE:Factory 
checked in at 2026-03-30 18:31:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/robin-map (Old)
 and      /work/SRC/openSUSE:Factory/.robin-map.new.1999 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "robin-map"

Mon Mar 30 18:31:57 2026 rev:8 rq:1343548 version:1.4.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/robin-map/robin-map.changes      2025-10-13 
17:33:33.310914912 +0200
+++ /work/SRC/openSUSE:Factory/.robin-map.new.1999/robin-map.changes    
2026-03-30 18:35:26.285440163 +0200
@@ -1,0 +2,6 @@
+Sun Mar 29 22:07:01 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 1.4.1:
+  * Update cmake_minimum_required to 3.10
+
+-------------------------------------------------------------------

Old:
----
  robin-map-1.4.0.tar.gz

New:
----
  robin-map-1.4.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ robin-map.spec ++++++
--- /var/tmp/diff_new_pack.oPsXwH/_old  2026-03-30 18:35:26.901465918 +0200
+++ /var/tmp/diff_new_pack.oPsXwH/_new  2026-03-30 18:35:26.901465918 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package robin-map
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           robin-map
-Version:        1.4.0
+Version:        1.4.1
 Release:        0
 Summary:        C++ implementation of a fast hash map and hash set using robin 
hood hashing
 License:        MIT

++++++ robin-map-1.4.0.tar.gz -> robin-map-1.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/robin-map-1.4.0/.github/workflows/ci.yml 
new/robin-map-1.4.1/.github/workflows/ci.yml
--- old/robin-map-1.4.0/.github/workflows/ci.yml        2025-03-30 
15:39:10.000000000 +0200
+++ new/robin-map-1.4.1/.github/workflows/ci.yml        2025-11-02 
20:06:06.000000000 +0100
@@ -29,13 +29,13 @@
           }
         - {
             name: macos-x64-gcc,
-            os:  macos-13,
+            os:  macos-latest,
             cxx: g++,
             cmake-build-type: Release
           }
         - {
             name: macos-x64-clang,
-            os:  macos-13,
+            os:  macos-latest,
             cxx: clang++,
             cmake-build-type: Release
           }
@@ -55,32 +55,16 @@
             cmake-build-type: Debug
           }
         - {
-            name: windows-x64-vs-2019,
-            os: windows-2019,
-            cmake-build-type: Release,
-            cmake-generator: Visual Studio 16 2019,
-            cmake-platform: x64,
-            vcpkg-triplet: x64-windows-static-md
-          }
-        - {
-            name: windows-x86-vs-2019,
-            os: windows-2019,
-            cmake-build-type: Release,
-            cmake-generator: Visual Studio 16 2019,
-            cmake-platform: Win32,
-            vcpkg-triplet: x86-windows-static-md
-          }
-        - {
-            name: windows-x64-vs-2022,
-            os: windows-2022,
+            name: windows-x64-vs-2025,
+            os: windows-2025,
             cmake-build-type: Release,
             cmake-generator: Visual Studio 17 2022,
             cmake-platform: x64,
             vcpkg-triplet: x64-windows-static-md
           }
         - {
-            name: windows-x86-vs-2022,
-            os: windows-2022,
+            name: windows-x86-vs-2025,
+            os: windows-2025,
             cmake-build-type: Release,
             cmake-generator: Visual Studio 17 2022,
             cmake-platform: Win32,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/robin-map-1.4.0/CMakeLists.txt 
new/robin-map-1.4.1/CMakeLists.txt
--- old/robin-map-1.4.0/CMakeLists.txt  2025-03-30 15:39:10.000000000 +0200
+++ new/robin-map-1.4.1/CMakeLists.txt  2025-11-02 20:06:06.000000000 +0100
@@ -1,6 +1,6 @@
-cmake_minimum_required(VERSION 3.5)
+cmake_minimum_required(VERSION 3.10)
 
-project(tsl-robin-map VERSION 1.4.0 LANGUAGES CXX)
+project(tsl-robin-map VERSION 1.4.1 LANGUAGES CXX)
 
 include(GNUInstallDirs)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/robin-map-1.4.0/include/tsl/robin_growth_policy.h 
new/robin-map-1.4.1/include/tsl/robin_growth_policy.h
--- old/robin-map-1.4.0/include/tsl/robin_growth_policy.h       2025-03-30 
15:39:10.000000000 +0200
+++ new/robin-map-1.4.1/include/tsl/robin_growth_policy.h       2025-11-02 
20:06:06.000000000 +0100
@@ -43,7 +43,7 @@
 #define TSL_RH_VERSION_MINOR 4
 // A change of the patch version indicates a bugfix without additional
 // functionality
-#define TSL_RH_VERSION_PATCH 0
+#define TSL_RH_VERSION_PATCH 1
 
 #ifdef TSL_DEBUG
 #define tsl_rh_assert(expr) assert(expr)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/robin-map-1.4.0/tests/CMakeLists.txt 
new/robin-map-1.4.1/tests/CMakeLists.txt
--- old/robin-map-1.4.0/tests/CMakeLists.txt    2025-03-30 15:39:10.000000000 
+0200
+++ new/robin-map-1.4.1/tests/CMakeLists.txt    2025-11-02 20:06:06.000000000 
+0100
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.8)
+cmake_minimum_required(VERSION 3.10)
 
 project(tsl_robin_map_tests)
 

Reply via email to