Skip to content

Commit 581ebef

Browse files
committed
fixing changelog and documentation configuration for the tag
1 parent e5a77a0 commit 581ebef

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
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-dev")
44+
set(PGROUTING_GIT_TAG "pgrouting-2.2.0-alpha")
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-907-gfc0096b develop
1+
pgrouting-2.2.0-909-ga0b0e3e develop

doc/conf.py.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ master_doc = 'doc/index'
4242

4343
# General information about the project.
4444
project = u'pgRouting'
45-
copyright = u'pgRouting Contributors - Version @PGROUTING_VERSION_STRING@ (@PGROUTING_GIT_BRANCH@)'
45+
copyright = u'pgRouting Contributors - Version @PGROUTING_VERSION_STRING@ (@PGROUTING_GIT_TAG@)'
4646

4747
# The version info for the project you're documenting, acts as replacement for
4848
# |version| and |release|, also used in various other places throughout the
@@ -51,7 +51,8 @@ copyright = u'pgRouting Contributors - Version @PGROUTING_VERSION_STRING@ (@PGRO
5151
# The short X.Y version.
5252
version = '@PGROUTING_VERSION_STRING@'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '@PGROUTING_VERSION_STRING@ (@PGROUTING_GIT_BRANCH@)'
54+
#release = '@PGROUTING_VERSION_STRING@ (@PGROUTING_GIT_BRANCH@)'
55+
release = '@PGROUTING_VERSION_STRING@ (@PGROUTING_GIT_TAG@)'
5556

5657
# The language for content autogenerated by Sphinx. Refer to documentation
5758
# for a list of supported languages.
@@ -114,7 +115,7 @@ html_theme_path = ['@SPHINX_THEME_DIR@']
114115

115116
# The name for this set of Sphinx documents. If None, it defaults to
116117
# "<project> v<release> documentation".
117-
html_title = "pgRouting Manual (@PGROUTING_VERSION_STRING@-dev)"
118+
html_title = "pgRouting Manual (@PGROUTING_VERSION_STRING@-alpha)"
118119

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

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_0`
180181
- :ref:`changelog_2_1_0`
181182
- :ref:`changelog_2_0`
182183
- :ref:`changelog_1_x`

doc/src/changelog/2_2_0.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,30 @@ With the release of pgRouting 2.2.0 fixes some bugs and issues.
1818
- To see the issues closed by this release see the `Git closed issues <https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22Release+2.2.0%22+is%3Aclosed>`_ on Github.
1919
- For important changes see the following release notes.
2020

21-
..
22-
23-
2421

2522
Release Notes
2623
-------------------------------------------------------------------------------
2724

2825

26+
Changes for release 2.2.0
27+
28+
2929
- Improved:
30+
3031
- pgr_nodeNetwork
3132

3233
- Signature fix
34+
3335
- pgr_dijkstra -- to match what was documented
3436

3537
- New functions
38+
3639
- pgr_floydWarshall
3740
- pgr_Johnson
3841
- pgr_DijkstraCost
3942

4043
- New Proposed functions
44+
4145
- pgr_withPoints
4246
- pgr_withPointsCost
4347
- pgr_withPointsDD
@@ -46,6 +50,7 @@ Release Notes
4650

4751

4852
- Deprecated functions:
53+
4954
- pgr_apspWarshall use pgr_floydWarshall instead
5055
- pgr_apspJohnson use pgr_Johnson instead
5156
- pgr_kDijkstraCost use pgr_dijkstraCost instead

0 commit comments

Comments
 (0)