Skip to content

Commit 46a81a9

Browse files
authored
Merge pull request #943 from pgRouting/release/2.5
Release 2.5.0
2 parents 672bc67 + f3ac774 commit 46a81a9

18 files changed

+20
-20
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ endif()
183183
set(PGROUTING_VERSION_MAJOR "2")
184184
set(PGROUTING_VERSION_MINOR "5")
185185
set(PGROUTING_VERSION_PATCH "0")
186-
set(PGROUTING_VERSION_DEV "-rc")
186+
set(PGROUTING_VERSION_DEV "")
187187

188188
set(PGROUTING_SHORT_VERSION "${PGROUTING_VERSION_MAJOR}.${PGROUTING_VERSION_MINOR}")
189189
set(PGROUTING_VERSION "${PGROUTING_VERSION_MAJOR}.${PGROUTING_VERSION_MINOR}.${PGROUTING_VERSION_PATCH}")

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
### Branches
88

9-
* The *master* branch has the pre-release 2.5.0-rc
10-
* The *release/2.5* branch has the next release 2.5.0 (Date of release Sept-13-2017)
11-
* The *develop* branch has the development of the next minor-release. 2.6.0-dev
9+
* The *master* branch has the release 2.5.0
10+
* The *release/2.5* branch has the next micro-release 2.5.1 (if needed)
11+
* The *develop* branch has the development of the next minor-release 2.6.0-dev
1212

1313
For the complete list of releases go to:
1414
https://github.com/pgRouting/pgrouting/releases

doc/src/pgRouting-introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Introduction
1414

1515
pgRouting is an extension of `PostGIS <http://postgis.net>`_ and `PostgreSQL <http://postgresql.org>`_ geospatial database and adds routing and other network analysis functionality. A predecessor of pgRouting – pgDijkstra, written by Sylvain Pasche from `Camptocamp <http://camptocamp.com>`_, was later extended by `Orkney <http://www.orkney.co.jp>`_ and renamed to pgRouting. The project is now supported and maintained by `Georepublic <http://georepublic.info>`_, `iMaptools <http://imaptools.com/>`__ and a broad user community.
1616

17-
pgRouting is an `OSGeo Labs <http://wiki.osgeo.org/wiki/OSGeo_Labs>`_ project of the `OSGeo Foundation <http://osgeo.org>`_ and included on `OSGeo Live <http://live.osgeo.org/>`_.
17+
pgRouting is part of `OSGeo Community Projects <http://wiki.osgeo.org/wiki/OSGeo_Community_Projects>`_ from the `OSGeo Foundation <http://osgeo.org>`_ and included on `OSGeo Live <http://live.osgeo.org/>`_.
1818

1919

2020
.. _license:

tools/sql-update-scripts/pgrouting--2.0.0--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ RETURNS TABLE(
228228
) AS
229229
$BODY$
230230
SELECT '2.5.0'::varchar AS version,
231-
'v2.5.0-rc'::varchar AS tag,
231+
'v2.5.0'::varchar AS tag,
232232
''::varchar AS hash,
233233
''::varchar AS branch,
234234
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.0.1--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ RETURNS TABLE(
228228
) AS
229229
$BODY$
230230
SELECT '2.5.0'::varchar AS version,
231-
'v2.5.0-rc'::varchar AS tag,
231+
'v2.5.0'::varchar AS tag,
232232
''::varchar AS hash,
233233
''::varchar AS branch,
234234
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.1.0--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ RETURNS TABLE(
326326
) AS
327327
$BODY$
328328
SELECT '2.5.0'::varchar AS version,
329-
'v2.5.0-rc'::varchar AS tag,
329+
'v2.5.0'::varchar AS tag,
330330
''::varchar AS hash,
331331
''::varchar AS branch,
332332
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.2.0--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ RETURNS TABLE(
180180
) AS
181181
$BODY$
182182
SELECT '2.5.0'::varchar AS version,
183-
'v2.5.0-rc'::varchar AS tag,
183+
'v2.5.0'::varchar AS tag,
184184
''::varchar AS hash,
185185
''::varchar AS branch,
186186
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.2.1--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ RETURNS TABLE(
180180
) AS
181181
$BODY$
182182
SELECT '2.5.0'::varchar AS version,
183-
'v2.5.0-rc'::varchar AS tag,
183+
'v2.5.0'::varchar AS tag,
184184
''::varchar AS hash,
185185
''::varchar AS branch,
186186
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.2.2--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ RETURNS TABLE(
180180
) AS
181181
$BODY$
182182
SELECT '2.5.0'::varchar AS version,
183-
'v2.5.0-rc'::varchar AS tag,
183+
'v2.5.0'::varchar AS tag,
184184
''::varchar AS hash,
185185
''::varchar AS branch,
186186
'1.54.0'::varchar AS boost;

tools/sql-update-scripts/pgrouting--2.2.3--2.5.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ RETURNS TABLE(
180180
) AS
181181
$BODY$
182182
SELECT '2.5.0'::varchar AS version,
183-
'v2.5.0-rc'::varchar AS tag,
183+
'v2.5.0'::varchar AS tag,
184184
''::varchar AS hash,
185185
''::varchar AS branch,
186186
'1.54.0'::varchar AS boost;

0 commit comments

Comments
 (0)