Skip to content

Commit 627a56a

Browse files
committed
Updating news and release notes
1 parent 9e61272 commit 627a56a

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ To see all issues & pull requests closed by this release see the
1717
* [#3049](https://github.com/pgRouting/pgrouting/issues/3049): Use enumeration on drivers and process.
1818
* [#3054](https://github.com/pgRouting/pgrouting/issues/3054): Change error message when edges_sql is empty
1919
* [#3055](https://github.com/pgRouting/pgrouting/issues/3055): bdDijkstra: use the shortest_path process and driver
20+
* [#3056](https://github.com/pgRouting/pgrouting/issues/3056): edwardMoore: use the shortest_path process and driver
2021

2122
## pgRouting 4.0
2223

doc/src/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ To see all issues & pull requests closed by this release see the
4242
* :issue:`3049`: Use enumeration on drivers and process.
4343
* :issue:`3054`: Change error message when edges_sql is empty
4444
* :issue:`3055`: bdDijkstra: use the shortest_path process and driver
45+
* :issue:`3056`: edwardMoore: use the shortest_path process and driver
4546

4647
pgRouting 4.0
4748
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

locale/en/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: pgRouting v4.1\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-05 18:16+0000\n"
11+
"POT-Creation-Date: 2026-02-06 17:38+0000\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"
@@ -3941,6 +3941,11 @@ msgid ""
39413941
"use the shortest_path process and driver"
39423942
msgstr ""
39433943

3944+
msgid ""
3945+
"`#3056 <https://github.com/pgRouting/pgrouting/issues/3056>`__: edwardMoore: "
3946+
"use the shortest_path process and driver"
3947+
msgstr ""
3948+
39443949
msgid "All releases"
39453950
msgstr ""
39463951

locale/pot/pgrouting_doc_strings.pot

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: pgRouting v4.1\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-02-05 18:16+0000\n"
11+
"POT-Creation-Date: 2026-02-06 17:38+0000\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"
@@ -3538,6 +3538,9 @@ msgstr ""
35383538
msgid "`#3055 <https://github.com/pgRouting/pgrouting/issues/3055>`__: bdDijkstra: use the shortest_path process and driver"
35393539
msgstr ""
35403540

3541+
msgid "`#3056 <https://github.com/pgRouting/pgrouting/issues/3056>`__: edwardMoore: use the shortest_path process and driver"
3542+
msgstr ""
3543+
35413544
msgid "All releases"
35423545
msgstr ""
35433546

pgtap/bellman_ford/edwardMoore/no_crash_test.pg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ BEGIN;
77

88

99
UPDATE edges SET cost = sign(cost), reverse_cost = sign(reverse_cost);
10-
SELECT CASE WHEN min_version('3.2.0') THEN plan (97) ELSE plan(84) END;
10+
SELECT CASE WHEN min_version('3.2.0') THEN plan (98) ELSE plan(85) END;
1111

1212

1313
SELECT general_no_crash('pgr_edwardMoore');
14+
SELECT throw_on_empty_edges_sql('pgr_edwardMoore', ',1,2');
1415
SELECT finish();
1516

1617
ROLLBACK;

0 commit comments

Comments
 (0)