Skip to content

Commit 544044b

Browse files
committed
fixing merge conflicts
2 parents 4bb500d + df265ff commit 544044b

File tree

13 files changed

+154
-10
lines changed

13 files changed

+154
-10
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ branches:
2727
only:
2828
- master
2929
- develop
30+
- hotFix/issue552
3031

3132
env:
3233
- POSTGRESQL_VERSION=9.1

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ SET(POSTGRESQL_BIN "" CACHE STRING "Define optional path to PostgreSQL binaries
3131
# PGROUTING version number.
3232
set(PGROUTING_VERSION_MAJOR "2")
3333
set(PGROUTING_VERSION_MINOR "2")
34-
set(PGROUTING_VERSION_PATCH "1")
34+
set(PGROUTING_VERSION_PATCH "2")
3535

3636
set(PGROUTING_VERSION_STRING "${PGROUTING_VERSION_MAJOR}.${PGROUTING_VERSION_MINOR}.${PGROUTING_VERSION_PATCH}")
3737
set(PGROUTING_VERSION "${PGROUTING_VERSION_MAJOR}.${PGROUTING_VERSION_MINOR}")
@@ -41,7 +41,7 @@ set(POSTGIS_MINIMUM_VERSION "2.0.0")
4141

4242
file(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})
4646
string(REGEX REPLACE "^(.+)-([^-]+)-[0-9]+-g([0-9a-f]+) (.*)$" "\\2" PGROUTING_GIT_BUILD ${PGROUTING_BUILD_STRING})
4747
string(REGEX REPLACE "^(.+)-([0-9]+)-g([0-9a-f]+) (.*)$" "\\3" PGROUTING_GIT_HASH ${PGROUTING_BUILD_STRING})

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes for 2.2.2
2+
-------------------------------------------------------------------------------
3+
4+
- Fixed regression error on pgr_drivingDistance
15

26
Changes for 2.2.1
37
-------------------------------------------------------------------------------

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pgrouting-2.2.1-0-g7141904 master
1+
pgrouting-2.2.2-0-g7eb7d57 master

doc/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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`

doc/src/changelog/2_2_2.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

doc/src/changelog/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
Release 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

doc/test/utilities-any.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.1
1+
2.2.2

src/common/src/basePath_SSEC.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 */

0 commit comments

Comments
 (0)