Skip to content

Commit c7dd76f

Browse files
committed
pumpup to version 3.7
1 parent 04cb3f2 commit c7dd76f

19 files changed

Lines changed: 416 additions & 27 deletions

File tree

.github/workflows/boost_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,5 @@ jobs:
133133
sudo service postgresql start
134134
psql -c "CREATE DATABASE ___pgr___test___;"
135135
DIR=$(git rev-parse --show-toplevel)
136-
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.6.1"
136+
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.0"
137137
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
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
old_pgr: [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]
31+
old_pgr: [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]
3232

3333
steps:
3434
- uses: actions/checkout@v4
@@ -122,6 +122,6 @@ jobs:
122122
run: |
123123
sudo service postgresql start
124124
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
125-
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.6.1';"
125+
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.7.0';"
126126
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
127127
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
@@ -18,9 +18,9 @@ include(pgr/BuildType)
1818
#---------------------------------------------
1919
#---------------------------------------------
2020

21-
project(PGROUTING VERSION 3.6.1
21+
project(PGROUTING VERSION 3.7.0
2222
LANGUAGES C CXX )
23-
set(PROJECT_VERSION_DEV "")
23+
set(PROJECT_VERSION_DEV "-dev")
2424
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
2525

2626
include(pgr/GitInfo)
@@ -31,8 +31,9 @@ set(PROJECT_LIB_NAME "${PROJECT_NAME_LOWER}-${PROJECT_LIB_VERSION}")
3131

3232
string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)
3333

34-
set(MINORS 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
34+
set(MINORS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
3535
set(OLD_SIGNATURES
36+
3.6.1
3637
3.6.0
3738
3.5.1
3839
3.5.0

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
pgRouting 3.7.0 Release Notes
2+
-------------------------------------------------------------------------------
3+
4+
No Changes Yet
5+
16
pgRouting 3.6.1 Release Notes
27
-------------------------------------------------------------------------------
38

doc/_static/page_history.js

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

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

doc/src/release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ To see the full list of changes check the list of `Git commits
2020
:local:
2121

2222

23+
24+
pgRouting 3.7.0 Release Notes
25+
-------------------------------------------------------------------------------
26+
27+
No Changes Yet
28+
2329
pgRouting 3.6.1 Release Notes
2430
-------------------------------------------------------------------------------
2531

docqueries/version/doc-full_version.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ SET client_min_messages TO NOTICE;
44
SET
55
/* -- q1 */
66
SELECT version, library FROM pgr_full_version();
7-
version | library
8-
---------+-----------------
9-
3.6.1 | pgrouting-3.6.1
7+
version | library
8+
-----------+-----------------
9+
3.7.0-dev | pgrouting-3.7.0
1010
(1 row)
1111

1212
/* -- q2 */

docqueries/version/doc-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-
3.6.1
9+
3.7.0-dev
1010
(1 row)
1111

1212
/* -- q2 */

locale/de/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) pgRouting Contributors - Version v3.6.1
2+
# Copyright (C) pgRouting Contributors - Version v3.7.0-dev
33
# This file is distributed under the same license as the pgRouting package.
44
# Regina Obe <regina@arrival3d.com>, 2023.
55
msgid ""

locale/en/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) pgRouting Contributors - Version v3.6.1
2+
# Copyright (C) pgRouting Contributors - Version v3.7.0-dev
33
# This file is distributed under the same license as the pgRouting package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
55
#
@@ -8,14 +8,14 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: pgRouting v3.6.0-dev\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-10-19 19:56+0000\n"
11+
"POT-Creation-Date: 2023-12-30 16:20-0600\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"MIME-Version: 1.0\n"
1616
"Content-Type: text/plain; charset=utf-8\n"
1717
"Content-Transfer-Encoding: 8bit\n"
18-
"Generated-By: Babel 2.13.0\n"
18+
"Generated-By: Babel 2.12.1\n"
1919

2020
msgid "BFS - Category"
2121
msgstr ""
@@ -6840,7 +6840,7 @@ msgid "Upgrading the database"
68406840
msgstr ""
68416841

68426842
msgid ""
6843-
"To upgrade pgRouting in the database to version 3.6.0 use the following "
6843+
"To upgrade pgRouting in the database to version 3.7.0 use the following "
68446844
"command:"
68456845
msgstr ""
68466846

@@ -15179,6 +15179,27 @@ msgid ""
1517915179
"<https://github.com/pgRouting/pgrouting/commits>`_ on Github."
1518015180
msgstr ""
1518115181

15182+
msgid "pgRouting 3.7.0 Release Notes"
15183+
msgstr ""
15184+
15185+
msgid "No Changes Yet"
15186+
msgstr ""
15187+
15188+
msgid "pgRouting 3.6.1 Release Notes"
15189+
msgstr ""
15190+
15191+
#, python-format
15192+
msgid ""
15193+
"To see all issues & pull requests closed by this release see the `Git "
15194+
"closed milestone for 3.6.1 "
15195+
"<https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.6.1%22>`_"
15196+
msgstr ""
15197+
15198+
msgid ""
15199+
"`#2588 <https://github.com/pgRouting/pgrouting/pull/2588>`__ pgrouting "
15200+
"3.6.0 fails to build on OSX"
15201+
msgstr ""
15202+
1518215203
msgid "pgRouting 3.6.0 Release Notes"
1518315204
msgstr ""
1518415205

0 commit comments

Comments
 (0)