Skip to content

Commit e3d3ecb

Browse files
authored
Merge pull request #2989 from cvvergara/pumpup-to-rc1
Pumpup to v4.0.0-rc1
2 parents 32e669f + 46a3543 commit e3d3ecb

File tree

17 files changed

+575
-1700
lines changed

17 files changed

+575
-1700
lines changed

.github/workflows/macos.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@ jobs:
5252

5353
- name: install deps
5454
run: |
55-
brew install postgresql@14 postgis boost
55+
brew install postgresql@17 postgis boost
56+
brew link postgresql@17
5657
5758
- name: Configure
5859
run: |
5960
mkdir build
6061
cd build
61-
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_DOC=OFF ..
62+
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_SHARED_MODULE_SUFFIX_CXX=.dylib -DWITH_DOC=OFF ..
6263
6364
- name: Build
6465
run: |
@@ -78,7 +79,7 @@ jobs:
7879
- name: Test
7980
run: |
8081
export PATH=$(brew --prefix)/Cellar/perl/$(perl -e 'print substr($^V, 1)')/bin:$PATH
81-
pg_ctl -D $(brew --prefix)/var/postgresql@14 start
82+
pg_ctl -D $(brew --prefix)/var/postgresql@17 start
8283
createuser -s postgres
8384
createdb ___pgr___test___
8485
bash ./tools/testers/pg_prove_tests.sh postgres 5432 Release

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include(pgr/BuildType)
3232

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

3838
include(pgr/GitInfo)

doc/bellman_ford/pgr_bellmanFord.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
.. index::
1111
single: Shortest Path Category; pgr_bellmanFord - Experimental
12-
single: bellmanFord - Experimental
12+
single: bellmanFord - Experimental on v3.0
1313

1414
|
1515
16-
``pgr_bellmanFord - Experimental``
16+
``pgr_bellmanFord`` - Experimental
1717
===============================================================================
1818

1919
``pgr_bellmanFord`` — Shortest path using Bellman-Ford algorithm.

doc/bellman_ford/pgr_edwardMoore.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
.. index::
1111
single: Shortest Path Category; pgr_edwardMoore - Experimental
12-
single: edwardMoore - Experimental
12+
single: edwardMoore - Experimental on v3.0
1313

1414
|
1515

doc/contraction/pgr_contractionHierarchies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
.. index::
1313
single: Contraction Family ; pgr_contractionHierarchies - Experimental
14-
single: contractionHierarchies - Experimental
14+
single: contractionHierarchies - Experimental on v3.8
1515

1616

1717
``pgr_contractionHierarchies`` - Experimental

doc/dagShortestPath/pgr_dagShortestPath.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.. index::
1111
single: Shortest Path Category ; pgr_dagShortestPath - Experimental
1212
single: Directed Acyclic Graph Category ; pgr_dagShortestPath - Experimental
13-
single: dagShortestPath - Experimental
13+
single: dagShortestPath - Experimental on v3.0
1414

1515
|
1616
@@ -102,7 +102,7 @@ Signatures
102102
103103

104104
.. index::
105-
single: dagShortestPath - Experimental ; One to One - Experimental on v3.0
105+
single: dagShortestPath - Experimental on v3.0 ; One to One - Experimental on v3.0
106106

107107
One to One
108108
...............................................................................
@@ -142,7 +142,7 @@ One to Many
142142
:end-before: -- q4
143143

144144
.. index::
145-
single: dagShortestPath - Experimental ; Many to One - Experimental on v3.0
145+
single: dagShortestPath - Experimental on v3.0 ; Many to One - Experimental on v3.0
146146

147147
Many to One
148148
...............................................................................
@@ -162,7 +162,7 @@ Many to One
162162
:end-before: -- q5
163163

164164
.. index::
165-
single: dagShortestPath - Experimental ; Many to Many - Experimental on v3.0
165+
single: dagShortestPath - Experimental on v3.0 ; Many to Many - Experimental on v3.0
166166

167167
Many to Many
168168
...............................................................................
@@ -183,7 +183,7 @@ Many to Many
183183
:end-before: -- q51
184184

185185
.. index::
186-
single: dagShortestPath - Experimental ; Combinations - Experimental on v3.2
186+
single: dagShortestPath - Experimental on v3.0 ; Combinations - Experimental on v3.2
187187

188188
Combinations
189189
...............................................................................

doc/max_flow/pgr_maxFlowMinCost.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
.. index::
1111
single: Flow Family ; pgr_maxFlowMinCost - Experimental
12-
single: maxFlowMinCost - Experimental
12+
single: maxFlowMinCost - Experimental on v3.0
1313

1414
|
1515
@@ -76,7 +76,7 @@ Signatures
7676
| OR EMPTY SET
7777
7878
.. index::
79-
single: maxFlowMinCost - Experimental ; One to One - Experimental on v3.0
79+
single: maxFlowMinCost - Experimental on v3.0 ; One to One - Experimental on v3.0
8080

8181
One to One
8282
...............................................................................
@@ -96,7 +96,7 @@ One to One
9696
:end-before: -- q2
9797

9898
.. index::
99-
single: maxFlowMinCost - Experimental ; One to Many - Experimental on v3.0
99+
single: maxFlowMinCost - Experimental on v3.0 ; One to Many - Experimental on v3.0
100100

101101
One to Many
102102
...............................................................................
@@ -136,7 +136,7 @@ Many to One
136136
:end-before: -- q4
137137

138138
.. index::
139-
single: maxFlowMinCost - Experimental ; Many to Many - Experimental on v3.0
139+
single: maxFlowMinCost - Experimental on v3.0 ; Many to Many - Experimental on v3.0
140140

141141
Many to Many
142142
...............................................................................
@@ -156,7 +156,7 @@ Many to Many
156156
:end-before: -- q5
157157

158158
.. index::
159-
single: maxFlowMinCost - Experimental ; Combinations -- Experimental on v3.2
159+
single: maxFlowMinCost - Experimental on v3.0 ; Combinations -- Experimental on v3.2
160160

161161
Combinations
162162
...............................................................................

doc/max_flow/pgr_maxFlowMinCost_Cost.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.. index::
1111
single: Flow Family ; pgr_maxFlowMinCost_Cost - Experimental
1212
single: Cost Category ; pgr_maxFlowMinCost_Cost - Experimental
13-
single: maxFlowMinCost_Cost - Experimental
13+
single: maxFlowMinCost_Cost - Experimental on v3.0
1414

1515
|
1616
@@ -80,7 +80,7 @@ Signatures
8080
| RETURNS FLOAT
8181
8282
.. index::
83-
single: maxFlowMinCost_Cost - Experimental ; One to One - Experimental on v3.0
83+
single: maxFlowMinCost_Cost - Experimental on v3.0 ; One to One - Experimental on v3.0
8484

8585
One to One
8686
...............................................................................
@@ -99,7 +99,7 @@ One to One
9999
:end-before: -- q2
100100

101101
.. index::
102-
single: maxFlowMinCost_Cost - Experimental ; One to Many - Experimental on v3.0
102+
single: maxFlowMinCost_Cost - Experimental on v3.0 ; One to Many - Experimental on v3.0
103103

104104
One to Many
105105
...............................................................................
@@ -118,7 +118,7 @@ One to Many
118118
:end-before: -- q4
119119

120120
.. index::
121-
single: maxFlowMinCost_Cost - Experimental ; Many to One - Experimental on v3.0
121+
single: maxFlowMinCost_Cost - Experimental on v3.0 ; Many to One - Experimental on v3.0
122122

123123
Many to One
124124
...............................................................................
@@ -137,7 +137,7 @@ Many to One
137137
:end-before: -- q3
138138

139139
.. index::
140-
single: maxFlowMinCost_Cost - Experimental ; Many to Many - Experimental on v3.0
140+
single: maxFlowMinCost_Cost - Experimental on v3.0 ; Many to Many - Experimental on v3.0
141141

142142
Many to Many
143143
...............................................................................
@@ -157,7 +157,7 @@ Many to Many
157157
:end-before: -- q5
158158

159159
.. index::
160-
single: maxFlowMinCost_Cost - Experimental ; Combinations - Experimental on v3.2
160+
single: maxFlowMinCost_Cost - Experimental on v3.0 ; Combinations - Experimental on v3.2
161161

162162
Combinations
163163
...............................................................................

doc/traversal/pgr_binaryBreadthFirstSearch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.. index::
1111
single: Traversal Family ; pgr_binaryBreadthFirstSearch - Experimental
1212
single: Breadth First Search Category ; pgr_binaryBreadthFirstSearch - Experimental
13-
single: binaryBreadthFirstSearch - Experimental
13+
single: binaryBreadthFirstSearch - Experimental on v3.0
1414

1515
|
1616

doc/traversal/pgr_breadthFirstSearch.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.. index::
1111
single: Traversal Family ; pgr_breadthFirstSearch - Experimental
1212
single: Breadth First Search Category ; pgr_breadthFirstSearch - Experimental
13-
single: breadthFirstSearch - Experimental
13+
single: breadthFirstSearch - Experimental on v3.0
1414

1515
|
1616
@@ -64,7 +64,7 @@ Signatures
6464
| Returns set of |result-spantree|
6565
6666
.. index::
67-
single: breadthFirstSearch - Experimental ; Single vertex - Experimental on v3.0
67+
single: breadthFirstSearch - Experimental on v3.0 ; Single vertex - Experimental on v3.0
6868

6969
Single vertex
7070
...............................................................................
@@ -85,7 +85,7 @@ Single vertex
8585
:end-before: -- q2
8686

8787
.. index::
88-
single: breadthFirstSearch - Experimental ; Multiple vertices - Experimental on v3.0
88+
single: breadthFirstSearch - Experimental on v3.0 ; Multiple vertices - Experimental on v3.0
8989

9090
Multiple vertices
9191
...............................................................................

0 commit comments

Comments
 (0)