Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/boost_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,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}" "4.0.0"
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "4.1.0"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
fail-fast: false
matrix:
boost_minor: [56]
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]
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]

steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -145,6 +145,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 '4.0.0';"
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '4.1.0';"
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"
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ include(pgr/BuildType)
#---------------------------------------------
#---------------------------------------------

project(PGROUTING VERSION 4.0.0
project(PGROUTING VERSION 4.1.0
LANGUAGES C CXX )
set(PROJECT_VERSION_DEV "")
set(PROJECT_VERSION_DEV "-dev")
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)

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

set(MINORS 4.0 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
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)
set(OLD_SIGNATURES
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
Expand Down
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ To read all history of releases go to the latest [release notes](https://docs.pg
# pgRouting 4


## pgRouting 4.1



### pgRouting 4.1.0 Release Notes

To see all issues & pull requests closed by this release see the
[#4.1.0](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%204.1.0%22)

No changes yet


## pgRouting 4.0


Expand Down
2 changes: 1 addition & 1 deletion doc/_static/page_history.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function createInfo(file, newat, altnames = '', removedat = '') {
this.removedat = removedat;
}

const versionsArr = ['4.0'];
const versionsArr = ['4.1','4.0'];
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'];
var titles = [
{k: 'en', v: ['Supported versions', 'Unsupported versions']},
Expand Down
19 changes: 18 additions & 1 deletion doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,32 @@ pgRouting 4
:local:
:depth: 1

pgRouting 4.0
pgRouting 4.1
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

.. contents:: Contents
:local:
:depth: 1


pgRouting 4.1.0 Release Notes
-------------------------------------------------------------------------------

To see all issues & pull requests closed by this release see the
:milestone:`4.1.0`

No changes yet

.. current

pgRouting 4.0
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

.. contents:: Contents
:local:
:depth: 1


pgRouting 4.0.0-alpha1 Release Notes
-------------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docqueries/version/full_version.result
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ SET
/* -- q1 */
SELECT version, library FROM pgr_full_version();
version | library
---------+-----------------
4.0.0 | pgrouting-4.0.0
-----------+-----------------
4.1.0-dev | pgrouting-4.1.0
(1 row)

/* -- q2 */
Expand Down
2 changes: 1 addition & 1 deletion docqueries/version/version.result
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET
SELECT pgr_version();
pgr_version
-------------
4.0.0
4.1.0-dev
(1 row)

/* -- q2 */
Expand Down
4 changes: 2 additions & 2 deletions locale/de/LC_MESSAGES/index.po
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/de/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# Regina Obe <[email protected]>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-08 19:15+0000\n"
"PO-Revision-Date: 2025-09-22 16:28+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/en/LC_MESSAGES/index.po
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
26 changes: 21 additions & 5 deletions locale/en/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-28 20:20+0000\n"
"POT-Creation-Date: 2025-12-05 23:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -3913,6 +3913,9 @@ msgstr ""
msgid ":doc:`release_notes`"
msgstr ""

msgid "pgRouting 4.0"
msgstr ""

msgid "pgRouting 4.0.0-alpha1 Release Notes"
msgstr ""

Expand Down Expand Up @@ -8055,7 +8058,7 @@ msgid "Upgrading the database"
msgstr ""

msgid ""
"To upgrade pgRouting in the database to version 4.0.0 use the following "
"To upgrade pgRouting in the database to version 4.1.0 use the following "
"command:"
msgstr ""

Expand Down Expand Up @@ -16143,7 +16146,20 @@ msgstr ""
msgid "Minors 4.x"
msgstr ""

msgid "pgRouting 4.0"
msgid "pgRouting 4.1"
msgstr ""

msgid "pgRouting 4.1.0 Release Notes"
msgstr ""

#, python-format
msgid ""
"To see all issues & pull requests closed by this release see the `Github "
"milestone for 4.1.0 <https://github.com/pgRouting/pgrouting/issues?"
"utf8=%E2%9C%93&q=milestone%3A%22Release%204.1.0%22>`__"
msgstr ""

msgid "No changes yet"
msgstr ""

msgid "pgRouting 3"
Expand Down
4 changes: 2 additions & 2 deletions locale/es/LC_MESSAGES/index.po
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: 2022-09-29 16:37+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/es/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
# Pedro Jose Rios Vergara <[email protected]>, 2022, 2025.
# Celia Virginia Vergara Castillo <[email protected]>, 2022.
# Celia Virginia Vergara Castillo <[email protected]>, 2023, 2024, 2025.
# DeepL <[email protected]>, 2024, 2025.
msgid ""
msgstr "Project-Id-Version: pgRouting v3.8\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2025-10-08 19:15+0000\nPO-Revision-Date: 2025-10-10 21:42+0000\nLast-Translator: Celia Virginia Vergara Castillo <[email protected]>\nLanguage-Team: Spanish <https://weblate.osgeo.org/projects/pgrouting/pgrouting-develop/es/>\nLanguage: es\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.4.3\nGenerated-By: Babel 2.10.3\n"
msgstr "Project-Id-Version: pgRouting v4.1\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2025-10-08 19:15+0000\nPO-Revision-Date: 2025-10-10 21:42+0000\nLast-Translator: Celia Virginia Vergara Castillo <[email protected]>\nLanguage-Team: Spanish <https://weblate.osgeo.org/projects/pgrouting/pgrouting-develop/es/>\nLanguage: es\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.4.3\nGenerated-By: Babel 2.10.3\n"

msgid "BFS - Category"
msgstr "BFS - Categoría"
Expand Down
4 changes: 2 additions & 2 deletions locale/ja/LC_MESSAGES/index.po
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: 2024-05-01 03:45+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/ja/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
# Translators:
Expand All @@ -18,7 +18,7 @@
# Celia Virginia Vergara Castillo <[email protected]>, 2024, 2025.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-08 19:15+0000\n"
"PO-Revision-Date: 2025-09-22 16:27+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/ko/LC_MESSAGES/index.po
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: 2022-11-15 15:30+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/ko/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# Regina Obe <[email protected]>, 2022.
# Hyung-Gyu Ryoo <[email protected]>, 2022, 2025.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-08 19:15+0000\n"
"PO-Revision-Date: 2025-09-22 16:28+0000\n"
Expand Down
4 changes: 2 additions & 2 deletions locale/pot/index.pot
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.8
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.8\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-25 12:55-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
Expand Down
22 changes: 17 additions & 5 deletions locale/pot/pgrouting_doc_strings.pot
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v4.0
# Copyright (C) pgRouting Contributors - Version v4.1
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v4.0\n"
"Project-Id-Version: pgRouting v4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-28 20:20+0000\n"
"POT-Creation-Date: 2025-12-05 23:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -3520,6 +3520,9 @@ msgstr ""
msgid ":doc:`release_notes`"
msgstr ""

msgid "pgRouting 4.0"
msgstr ""

msgid "pgRouting 4.0.0-alpha1 Release Notes"
msgstr ""

Expand Down Expand Up @@ -6910,7 +6913,7 @@ msgstr ""
msgid "Upgrading the database"
msgstr ""

msgid "To upgrade pgRouting in the database to version 4.0.0 use the following command:"
msgid "To upgrade pgRouting in the database to version 4.1.0 use the following command:"
msgstr ""

msgid "More information can be found in https://www.postgresql.org/docs/current/sql-createextension.html"
Expand Down Expand Up @@ -13492,7 +13495,16 @@ msgstr ""
msgid "Minors 4.x"
msgstr ""

msgid "pgRouting 4.0"
msgid "pgRouting 4.1"
msgstr ""

msgid "pgRouting 4.1.0 Release Notes"
msgstr ""

msgid "To see all issues & pull requests closed by this release see the `Github milestone for 4.1.0 <https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%204.1.0%22>`__"
msgstr ""

msgid "No changes yet"
msgstr ""

msgid "pgRouting 3"
Expand Down
Loading