[Git][debian-gis-team/pgrouting][upstream] New upstream version 3.7.3

Bas Couwenberg (@sebastic) gitlab at salsa.debian.org
Tue Feb 11 04:42:30 GMT 2025



Bas Couwenberg pushed to branch upstream at Debian GIS Project / pgrouting


Commits:
849f2f6d by Bas Couwenberg at 2025-02-11T05:32:11+01:00
New upstream version 3.7.3
- - - - -


8 changed files:

- .github/workflows/boost_version.yml
- .github/workflows/update.yml
- CMakeLists.txt
- NEWS.md
- doc/src/release_notes.rst
- docqueries/version/full_version.result
- docqueries/version/version.result
- tools/testers/pg_prove_tests.sh


Changes:

=====================================
.github/workflows/boost_version.yml
=====================================
@@ -131,5 +131,5 @@ jobs:
           sudo service postgresql start
           psql -c "CREATE DATABASE ___pgr___test___;"
           DIR=$(git rev-parse --show-toplevel)
-          bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.2"
+          bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.3"
           pg_prove  -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"


=====================================
.github/workflows/update.yml
=====================================
@@ -29,7 +29,7 @@ jobs:
         fail-fast: false
         matrix:
           boost_minor: [56]
-          old_pgr: [3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
+          old_pgr: [3.7.2, 3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
 
     steps:
       - uses: actions/checkout at v4
@@ -126,6 +126,6 @@ jobs:
         run: |
           sudo service postgresql start
           psql -p "${PGPORT}"  -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
-          psql -p "${PGPORT}"  -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE  TO '3.7.2';"
+          psql -p "${PGPORT}"  -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE  TO '3.7.3';"
           psql -p "${PGPORT}"  -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
           pg_prove  -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"


=====================================
CMakeLists.txt
=====================================
@@ -14,7 +14,9 @@ if(POLICY CMP0167)
     cmake_policy(SET CMP0167 OLD)
 endif()
 
-cmake_policy(SET CMP0148 OLD)
+if(POLICY CMP0148)
+    cmake_policy(SET CMP0148 OLD)
+endif()
 
 #---------------------------------------------
 # Setting kind of build
@@ -28,7 +30,7 @@ include(pgr/BuildType)
 #---------------------------------------------
 #---------------------------------------------
 
-project(PGROUTING VERSION 3.7.2
+project(PGROUTING VERSION 3.7.3
     LANGUAGES C CXX )
 set(PROJECT_VERSION_DEV "")
 string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
@@ -43,6 +45,7 @@ string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)
 
 set(MINORS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
 set(OLD_SIGNATURES
+    3.7.2
     3.7.1
     3.7.0
     3.6.3


=====================================
NEWS.md
=====================================
@@ -6,7 +6,13 @@
 
 .. current
 
+### pgRouting 3.7.3 Release Notes
 
+To see all issues & pull requests closed by this release see the [Git closed
+milestone for 3.7.3
+](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.3%22)
+
+* [#2731](https://github.com/pgRouting/pgrouting/pull/2731) Build Failure on Ubuntu 22
 
 ### pgRouting 3.7.2 Release Notes
 


=====================================
doc/src/release_notes.rst
=====================================
@@ -36,7 +36,14 @@ pgRouting 3.7
 
 .. current
 
+pgRouting 3.7.3 Release Notes
+-------------------------------------------------------------------------------
+
+To see all issues & pull requests closed by this release see the `Git closed
+milestone for 3.7.3
+<https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.3%22>`__
 
+* `#2731 <https://github.com/pgRouting/pgrouting/pull/2731>`__ Build Failure on Ubuntu 22
 
 pgRouting 3.7.2 Release Notes
 -------------------------------------------------------------------------------


=====================================
docqueries/version/full_version.result
=====================================
@@ -6,7 +6,7 @@ SET
 SELECT version, library FROM pgr_full_version();
  version |     library
 ---------+-----------------
- 3.7.2   | pgrouting-3.7.2
+ 3.7.3   | pgrouting-3.7.3
 (1 row)
 
 /* -- q2 */


=====================================
docqueries/version/version.result
=====================================
@@ -6,7 +6,7 @@ SET
 SELECT pgr_version();
  pgr_version
 -------------
- 3.7.2
+ 3.7.3
 (1 row)
 
 /* -- q2 */


=====================================
tools/testers/pg_prove_tests.sh
=====================================
@@ -37,7 +37,7 @@ echo "$PGPORT"
 
 pushd ./tools/testers/ || exit 1
 
-bash setup_db.sh "${PGPORT}" "${PGDATABASE}" "${PGUSER}" "3.7.2"
+bash setup_db.sh "${PGPORT}" "${PGDATABASE}" "${PGUSER}" "3.7.3"
 
 PGOPTIONS="-c client_min_messages=WARNING" pg_prove --failures --Q --recurse \
     -S on_error_rollback=off \



View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/commit/849f2f6d8dc183154e62c635724bb67a03670568

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/commit/849f2f6d8dc183154e62c635724bb67a03670568
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20250211/967aadff/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list