Skip to content

Commit 719f520

Browse files
authored
Merge pull request #2997 from cvvergara/pumpup-to-4.1.0-dev
pumpup to 4.1.0 dev
2 parents 5df1bfd + 86342aa commit 719f520

30 files changed

+444
-55
lines changed

.github/workflows/boost_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,5 @@ jobs:
129129
sudo service postgresql start
130130
psql -c "CREATE DATABASE ___pgr___test___;"
131131
DIR=$(git rev-parse --show-toplevel)
132-
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "4.0.0"
132+
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "4.1.0"
133133
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
boost_minor: [56]
51-
old_pgr: [3.8.0, 3.7.3, 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]
51+
old_pgr: [4.0.0, 3.8.0, 3.7.3, 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]
5252

5353
steps:
5454
- uses: actions/checkout@v6
@@ -145,6 +145,6 @@ jobs:
145145
run: |
146146
sudo service postgresql start
147147
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
148-
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '4.0.0';"
148+
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '4.1.0';"
149149
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
150150
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ include(pgr/BuildType)
3030
#---------------------------------------------
3131
#---------------------------------------------
3232

33-
project(PGROUTING VERSION 4.0.0
33+
project(PGROUTING VERSION 4.1.0
3434
LANGUAGES C CXX )
35-
set(PROJECT_VERSION_DEV "")
35+
set(PROJECT_VERSION_DEV "-dev")
3636
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
3737

3838
include(pgr/GitInfo)
@@ -46,8 +46,9 @@ string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)
4646
# uncomment to show the NOTICE/WARNING of deprecated internal C functions
4747
# add_compile_definitions(SHOWMSG=1)
4848

49-
set(MINORS 4.0 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
49+
set(MINORS 4.1 4.0 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
5050
set(OLD_SIGNATURES
51+
4.0.0
5152
3.8.0
5253
3.7.3 3.7.2 3.7.1 3.7.0
5354
3.6.3 3.6.2 3.6.1 3.6.0

NEWS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ To read all history of releases go to the latest [release notes](https://docs.pg
33
# pgRouting 4
44

55

6+
## pgRouting 4.1
7+
8+
9+
10+
### pgRouting 4.1.0 Release Notes
11+
12+
To see all issues & pull requests closed by this release see the
13+
[#4.1.0](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%204.1.0%22)
14+
15+
No changes yet
16+
17+
618
## pgRouting 4.0
719

820

doc/_static/page_history.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function createInfo(file, newat, altnames = '', removedat = '') {
55
this.removedat = removedat;
66
}
77

8-
const versionsArr = ['4.0'];
8+
const versionsArr = ['4.1','4.0'];
99
var unsuportedArr = ['3.8','3.7', '3.6', '3.5', '3.4', '3.3', '3.2', '3.1', '3.0','2.6', '2.5', '2.4', '2.3', '2.2', '2.1', '2.0'];
1010
var titles = [
1111
{k: 'en', v: ['Supported versions', 'Unsupported versions']},

doc/src/release_notes.rst

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,32 @@ pgRouting 4
2727
:local:
2828
:depth: 1
2929

30-
pgRouting 4.0
30+
pgRouting 4.1
3131
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3232

3333
.. contents:: Contents
3434
:local:
3535
:depth: 1
3636

37+
38+
pgRouting 4.1.0 Release Notes
39+
-------------------------------------------------------------------------------
40+
41+
To see all issues & pull requests closed by this release see the
42+
:milestone:`4.1.0`
43+
44+
No changes yet
45+
3746
.. current
3847
48+
pgRouting 4.0
49+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
50+
51+
.. contents:: Contents
52+
:local:
53+
:depth: 1
54+
55+
3956
pgRouting 4.0.0-alpha1 Release Notes
4057
-------------------------------------------------------------------------------
4158

docqueries/version/full_version.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ SET
55
/* -- q1 */
66
SELECT version, library FROM pgr_full_version();
77
version | library
8-
---------+-----------------
9-
4.0.0 | pgrouting-4.0.0
8+
-----------+-----------------
9+
4.1.0-dev | pgrouting-4.1.0
1010
(1 row)
1111

1212
/* -- q2 */

docqueries/version/version.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SET
66
SELECT pgr_version();
77
pgr_version
88
-------------
9-
4.0.0
9+
4.1.0-dev
1010
(1 row)
1111

1212
/* -- q2 */

locale/de/LC_MESSAGES/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) pgRouting Contributors - Version v3.8
2+
# Copyright (C) pgRouting Contributors - Version v4.1
33
# This file is distributed under the same license as the pgRouting package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: pgRouting v3.8\n"
8+
"Project-Id-Version: pgRouting v4.1\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

locale/de/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) pgRouting Contributors - Version v3.8
2+
# Copyright (C) pgRouting Contributors - Version v4.1
33
# This file is distributed under the same license as the pgRouting package.
44
# Regina Obe <[email protected]>, 2023.
55
msgid ""
66
msgstr ""
7-
"Project-Id-Version: pgRouting v3.8\n"
7+
"Project-Id-Version: pgRouting v4.1\n"
88
"Report-Msgid-Bugs-To: \n"
99
"POT-Creation-Date: 2025-10-08 19:15+0000\n"
1010
"PO-Revision-Date: 2025-09-22 16:28+0000\n"

0 commit comments

Comments
 (0)