Skip to content

Commit c97515e

Browse files
committed
Deprecating min supported versions
1 parent eb76e2f commit c97515e

File tree

3 files changed

+13
-18
lines changed

3 files changed

+13
-18
lines changed

.github/workflows/boost_version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ name: Boost supported versions
2020
#
2121
# boost::graph
2222
# - 1.84 is failing its own tests (Jul 2022)
23+
# - 1.83 transitive closure & stoer wagner changed on 83 (Jul 2022)
2324
# - 1.80 changed on 1.80 (Aug 2022)
2425
# - 1.75 requires C++14 (Dec 2020)
2526
# - 1.68 changed on 1.68 (Aug 2018)
@@ -67,7 +68,7 @@ jobs:
6768
strategy:
6869
fail-fast: false
6970
matrix:
70-
boost_minor: [56, 68, 75, 76, 77, 78, 79, 80, 84]
71+
boost_minor: [56, 68, 75, 76, 77, 78, 79, 80, 83, 84]
7172

7273
steps:
7374
- uses: actions/checkout@v4

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
tools/release-scripts/notes2news.pl
3636
if git status | grep 'NEWS.md'; then echo "NEWS.md is not up to date"; exit 1; fi
37-
if ! grep -q $(grep -Po '(?<=project\(PGROUTING VERSION )[^;]+' CMakeLists.txt) NEWS.md; then echo "Missing section in NEWS"; exit 1; fi
37+
if ! grep -q $(grep -Po '(?<=project\(PGROUTING VERSION )[^;]+' CMakeLists.txt) NEWS.md; then echo "Missing section in NEWS.md"; exit 1; fi
3838
3939
License_check:
4040
runs-on: ubuntu-latest

README.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# pgRouting - Routing on PostgreSQL
22

3-
[![Join the chat at https://gitter.im/pgRouting/pgrouting](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pgRouting/pgrouting?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
3+
[![Join the chat at
4+
https://gitter.im/pgRouting/pgrouting](https://badges.gitter.im/Join%20Chat.svg)](https://app.gitter.im/#/room/#pgrouting:osgeo.org)
5+
[Join discourse](https://discourse.osgeo.org/c/pgrouting/15)
6+
47

58
## Branches
69

@@ -10,6 +13,9 @@
1013
For the complete list of releases go to:
1114
https://github.com/pgRouting/pgrouting/releases
1215

16+
For the release notes go to: https://docs.pgrouting.org/latest/en/release_notes.html
17+
18+
1319
## LINKS
1420

1521
* https://pgrouting.org/
@@ -27,44 +33,32 @@ pgRouting extends the PostGIS/PostgreSQL geospatial database to provide geospati
2733
This library contains the following features:
2834

2935
* All Pairs Shortest Path Algorithms
30-
3136
* A-star algorithm
32-
3337
* Bi-directional algorithms
34-
3538
* A variety of applications of Dijkstra algorithms
36-
3739
* Cost functions
3840
* With points
39-
4041
* Driving Distance
4142
* With points
42-
4343
* Yen's algorithm
44-
4544
* Traveling Sales Person (TSP)
4645

4746
and many more.
4847

49-
The latest documentation: http://docs.pgrouting.org/latest
48+
The latest documentation: https://docs.pgrouting.org/latest
5049

5150
## REQUIREMENTS
5251

5352
### Building requirements
5453

5554
* perl
56-
5755
* C and C++ compilers
5856
* Compiling with Boost 1.56 up to Boost 1.74 requires C++ Compiler with C++03 or C++11 standard support
5957
* Compiling with Boost 1.75 requires C++ Compiler with C++14 standard support
60-
61-
* Postgresql = Supported version by PostgreSQL
62-
58+
* Postgresql = Supported [version](https://www.postgresql.org/support/versioning/) by PostgreSQL
6359
* The Boost Graph Library (BGL) >= 1.56
64-
6560
* CMake >= 3.2
66-
67-
* Sphinx >= 4.0.0
61+
* 7.0 > Sphinx >= 4.0.0
6862

6963
### User's requirements
7064

0 commit comments

Comments
 (0)