Skip to content

Commit ef09a99

Browse files
committed
modified version to v2.2-beta2
1 parent 59229c0 commit ef09a99

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.0-beta2dev")
44+
set(PGROUTING_GIT_TAG "pgrouting-2.2.0-beta2")
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})

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pgrouting-2.2.0-beta2dev-3-gf82dff3 develop
1+
pgrouting-2.2.0-beta2-3-gf82dff3 develop

doc/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ html_theme_path = ['@SPHINX_THEME_DIR@']
115115

116116
# The name for this set of Sphinx documents. If None, it defaults to
117117
# "<project> v<release> documentation".
118-
html_title = "pgRouting Manual (@PGROUTING_VERSION_STRING@-beta1)"
118+
html_title = "pgRouting Manual (@PGROUTING_VERSION_STRING@-beta2)"
119119

120120
# A shorter title for the navigation bar. Default is the same as html_title.
121121
#html_short_title = None

src/topology/sql/nodeNetwork.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ DECLARE
5656

5757
BEGIN
5858
raise notice 'PROCESSING:';
59-
raise notice 'pgr_nodeNetwork(''%'',%,''%'',''%'',''%'',''%'')',edge_table,tolerance,id,the_geom,table_ending,rows_where;
59+
raise notice 'pgr_nodeNetwork(''%'', %, ''%'', ''%'', ''%'', ''%'', %)',
60+
edge_table, tolerance, id, the_geom, table_ending, rows_where, outall;
6061
raise notice 'Performing checks, please wait .....';
6162
execute 'show client_min_messages' into debuglevel;
6263

src/topology/test/nodeNetwork-any.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NOTICE: Intersections detected: 1
2323
NOTICE: Ring geometries: 0
2424
OK
2525
NOTICE: PROCESSING:
26-
NOTICE: pgr_nodeNetwork('edge_table',0.001,'id','the_geom','noded','')
26+
NOTICE: pgr_nodeNetwork('edge_table', 0.001, 'id', 'the_geom', 'noded', '<NULL>', f)
2727
NOTICE: Performing checks, please wait .....
2828
NOTICE: Processing, please wait .....
2929
NOTICE: Splitted Edges: 2

0 commit comments

Comments
 (0)