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 @@ -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.0"
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "4.0.0"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ permissions:
contents: read

jobs:
build:
update-ver:
name: Build
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
old_pgr: [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.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@v4
Expand Down Expand Up @@ -122,6 +122,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.0';"
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '4.0.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"
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include(pgr/BuildType)
#---------------------------------------------
#---------------------------------------------

project(PGROUTING VERSION 3.7.0
project(PGROUTING VERSION 4.0.0
LANGUAGES C CXX )
set(PROJECT_VERSION_DEV "")
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
Expand All @@ -31,8 +31,9 @@ set(PROJECT_LIB_NAME "${PROJECT_NAME_LOWER}-${PROJECT_LIB_VERSION}")

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(MINORS 4.0 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
set(OLD_SIGNATURES
3.7.0
3.6.3
3.6.2
3.6.1
Expand Down
15 changes: 13 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# pgRouting 3
# pgRouting 4


## pgRouting 3.7
## pgRouting 4.0


.. current

### pgRouting 4.0.0 Release Notes

No Changes Yet


# pgRouting 3


## pgRouting 3.7


### pgRouting 3.7.0 Release Notes

To see all issues & pull requests closed by this release see the [Git closed
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 @@ -4,7 +4,7 @@ function createInfo(file, newat, altnames = '') {
this.altnames = altnames;
}

var versionsArr = ['3.7', '3.6', '3.5', '3.4', '3.3', '3.2', '3.1', '3.0'];
var versionsArr = ['4.0', '3.7', '3.6', '3.5', '3.4', '3.3', '3.2', '3.1', '3.0'];
var unsuportedArr = ['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
24 changes: 22 additions & 2 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,28 @@ To see the full list of changes check the list of `Git commits
:local:
:depth: 1

pgRouting 4
*******************************************************************************

.. contents:: Minors 4.x
:local:
:depth: 1

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

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

.. current

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

No Changes Yet


pgRouting 3
*******************************************************************************

Expand All @@ -34,8 +56,6 @@ pgRouting 3.7
:local:
:depth: 1

.. current

pgRouting 3.7.0 Release Notes
-------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docqueries/version/full_version.result
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET
SELECT version, library FROM pgr_full_version();
version | library
-----------+-----------------
3.7.0-dev | pgrouting-3.7.0
4.0.0-dev | pgrouting-4.0.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
-------------
3.7.0-dev
4.0.0-dev
(1 row)

/* -- q2 */
Expand Down
1 change: 1 addition & 0 deletions docqueries/withPoints/withPointsCostMatrix.pg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
SET extra_float_digits=-3;
SET client_min_messages TO WARNING;
/* -- q1 */
SELECT * FROM pgr_withPointsCostMatrix(
'SELECT id, source, target, cost, reverse_cost FROM edges ORDER BY id',
Expand Down
4 changes: 2 additions & 2 deletions docqueries/withPoints/withPointsCostMatrix.result
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ SET client_min_messages TO NOTICE;
SET
SET extra_float_digits=-3;
SET
SET client_min_messages TO WARNING;
SET
/* -- q1 */
SELECT * FROM pgr_withPointsCostMatrix(
'SELECT id, source, target, cost, reverse_cost FROM edges ORDER BY id',
Expand Down Expand Up @@ -34,8 +36,6 @@ SELECT * FROM pgr_TSP(
array[-1, 10, 11, -6], directed := false);
$$
);
NOTICE: pgr_TSP no longer solving with simulated annaeling
HINT: Ignoring annaeling parameters
seq | node | cost | agg_cost
-----+------+------+----------
1 | -6 | 0 | 0
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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# Regina Obe <[email protected]>, 2023.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.6.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# 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.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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
16 changes: 11 additions & 5 deletions locale/en/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# 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.6.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
"POT-Creation-Date: 2024-10-02 11:55-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.16.0\n"
"Generated-By: Babel 2.12.1\n"

msgid "BFS - Category"
msgstr ""
Expand Down Expand Up @@ -4386,6 +4386,12 @@ msgstr ""
msgid ":doc:`release_notes`"
msgstr ""

msgid "pgRouting 4.0.0 Release Notes"
msgstr ""

msgid "No Changes Yet"
msgstr ""

msgid "pgRouting 3.7.0 Release Notes"
msgstr ""

Expand Down Expand Up @@ -7037,7 +7043,7 @@ msgid "Upgrading the database"
msgstr ""

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

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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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,5 +1,5 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
# Pedro Jose Rios Vergara <[email protected]>, 2022.
Expand All @@ -8,7 +8,7 @@
# DeepL <[email protected]>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
"PO-Revision-Date: 2024-10-10 19:43+0000\n"
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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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
5 changes: 2 additions & 3 deletions locale/ja/LC_MESSAGES/pgrouting_doc_strings.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# #-#-#-#-# allpairs-family.po (pgRouting v3.4.0-dev) #-#-#-#-#
# SOME DESCRIPTIVE TITLE.
# Copyright (C) pgRouting Contributors - Version v3.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
# Translators:
Expand All @@ -19,7 +18,7 @@
# Celia Virginia Vergara Castillo <[email protected]>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Project-Id-Version: pgRouting v4.0.0-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
"PO-Revision-Date: 2024-09-23 01:16+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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# This file is distributed under the same license as the pgRouting package.
# Regina Obe <[email protected]>, 2022.
# Hyung-Gyu Ryoo <[email protected]>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: pgRouting v3.4.0\n"
"Project-Id-Version: pgRouting v4.0.0-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-17 00:50+0000\n"
"PO-Revision-Date: 2022-12-13 12:30+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.7.0
# Copyright (C) pgRouting Contributors - Version v4.0.0-dev
# 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.4.0-dev\n"
"Project-Id-Version: pgRouting v4.0.0-dev\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
Loading