File tree Expand file tree Collapse file tree 13 files changed +154
-10
lines changed
Expand file tree Collapse file tree 13 files changed +154
-10
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ branches:
2727 only :
2828 - master
2929 - develop
30+ - hotFix/issue552
3031
3132env :
3233 - POSTGRESQL_VERSION=9.1
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ SET(POSTGRESQL_BIN "" CACHE STRING "Define optional path to PostgreSQL binaries
3131# PGROUTING version number.
3232set (PGROUTING_VERSION_MAJOR "2" )
3333set (PGROUTING_VERSION_MINOR "2" )
34- set (PGROUTING_VERSION_PATCH "1 " )
34+ set (PGROUTING_VERSION_PATCH "2 " )
3535
3636set (PGROUTING_VERSION_STRING "${PGROUTING_VERSION_MAJOR} .${PGROUTING_VERSION_MINOR} .${PGROUTING_VERSION_PATCH} " )
3737set (PGROUTING_VERSION "${PGROUTING_VERSION_MAJOR} .${PGROUTING_VERSION_MINOR} " )
@@ -41,7 +41,7 @@ set(POSTGIS_MINIMUM_VERSION "2.0.0")
4141
4242file (STRINGS "${PGROUTING_SOURCE_DIR} /VERSION" PGROUTING_BUILD_STRING)
4343
44- set (PGROUTING_GIT_TAG "pgrouting-2.2.1 " )
44+ set (PGROUTING_GIT_TAG "pgrouting-2.2.2 " )
4545#string(REGEX REPLACE "^(.+)-([0-9]+)-g([0-9a-f]+) (.*)$" "\\1" PGROUTING_GIT_TAG ${PGROUTING_BUILD_STRING})
4646string (REGEX REPLACE "^(.+)-([^-]+)-[0-9]+-g([0-9a-f]+) (.*)$" "\\ 2" PGROUTING_GIT_BUILD ${PGROUTING_BUILD_STRING} )
4747string (REGEX REPLACE "^(.+)-([0-9]+)-g([0-9a-f]+) (.*)$" "\\ 3" PGROUTING_GIT_HASH ${PGROUTING_BUILD_STRING} )
Original file line number Diff line number Diff line change 1+ Changes for 2.2.2
2+ -------------------------------------------------------------------------------
3+
4+ - Fixed regression error on pgr_drivingDistance
15
26Changes for 2.2.1
37-------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 44
55## STATUS
66
7- ### Current Development is in the * develop * branch
7+ ### Branches
88
9- The * master* branch reflects the current 2.2.0 release.
9+ The * master* branch reflects the current 2.2.2 release.
10+ The * develop* branch reflects the 2.3.0-dev
1011
1112
1213
Original file line number Diff line number Diff line change 1- pgrouting-2.2.1 -0-g7141904 master
1+ pgrouting-2.2.2 -0-g7eb7d57 master
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ Change Log
177177
178178:ref: `change_log `
179179
180+ - :ref: `changelog_2_2_2 `
180181 - :ref: `changelog_2_2_1 `
181182 - :ref: `changelog_2_2_0 `
182183 - :ref: `changelog_2_1_0 `
Original file line number Diff line number Diff line change 1+ ..
2+ ****************************************************************************
3+ pgRouting Manual
4+ Copyright(c) pgRouting Contributors
5+
6+ This documentation is licensed under a Creative Commons Attribution-Share
7+ Alike 3.0 License: http://creativecommons.org/licenses/by-sa/3.0/
8+ ************************************************************************** **
9+
10+ .. _changelog_2_2_2 :
11+
12+ pgRouting 2.2.2 Release Notes
13+ ===============================================================================
14+
15+ With the release of pgRouting 2.2.2 fixes a regression bug.
16+
17+ - To see the full list of changes check the list of `Git commits <https://github.com/pgRouting/pgrouting/commits >`_ on Github.
18+ - To see the issues closed by this release see the `Git closed issues <https://github.com/pgRouting/pgrouting/issues?q=milestone%3ARelease-2.2.2+is%3Aclosed >`_ on Github.
19+ - For important changes see the following release notes.
20+
21+
22+ Release Notes
23+ -------------------------------------------------------------------------------
24+
25+
26+ Changes for release 2.2.2
27+
28+ * Fixed regression error on pgr_drivingDistance
Original file line number Diff line number Diff line change 1212Release Notes
1313===============================================================================
1414
15+ - :ref: `changelog_2_2_2 `
1516 - :ref: `changelog_2_2_1 `
1617 - :ref: `changelog_2_2_0 `
1718 - :ref: `changelog_2_1_0 `
@@ -21,6 +22,7 @@ Release Notes
2122.. toctree ::
2223 :hidden:
2324
25+ 2_2_2
2426 2_2_1
2527 2_2_0
2628 2_1_0
Original file line number Diff line number Diff line change 1- 2.2.1
1+ 2.2.2
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ class Path {
162162 return l.node < r.node ;
163163 });
164164
165- if (pos != p1.end () && stop.agg_cost < pos->agg_cost ) {
165+ if (pos != p1.end () && stop.node == pos-> node && stop. agg_cost < pos->agg_cost ) {
166166 /* both share the same node &
167167 * the second path has the smallest
168168 * So erasing from the first path */
You can’t perform that action at this time.
0 commit comments