diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b99dd0da5f..1b6fefa3f5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ include(pgr/BuildType) project(PGROUTING VERSION 3.3.0 LANGUAGES C CXX ) -set(PROJECT_VERSION_DEV "-dev") +set(PROJECT_VERSION_DEV "") string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER) include(pgr/GitInfo) diff --git a/NEWS b/NEWS index 6a823d2b529..0eaac331901 100644 --- a/NEWS +++ b/NEWS @@ -3,10 +3,6 @@ pgRouting 3.3.0 Release Notes To see all issues & pull requests closed by this release see the [Git closed milestone for 3.3.0](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.3.0%22) on Github. -**New experimental functions** - -* pgr_edgeColoring - **Issue fixes** * [#2057](https://github.com/pgRouting/pgrouting/issues/2057): trspViaEdges columns in different order @@ -15,13 +11,42 @@ To see all issues & pull requests closed by this release see the [Git closed mil * [#2202](https://github.com/pgRouting/pgrouting/issues/2202): pgr_sequentialVertexColoring to proposed * [#2203](https://github.com/pgRouting/pgrouting/issues/2203): pgr_dijkstraNear and pgr_dijkstraNearCost to proposed -**Experimental promoted to proposed** +**New experimental functions** -* pgr_depthFirstSearch -* pgr_dijkstraNear -* pgr_dijkstraNearCost -* pgr_extractVertices -* pgr_sequentialVertexColoring +* Coloring + + * pgr_edgeColoring + +**Experimental promoted to Proposed** + +* Dijkstra + + * pgr_dijkstraNear + + * dijkstraNear(Combinations) + * dijkstraNear(Many to Many) + * dijkstraNear(Many to One) + * dijkstraNear(One to Many) + + * pgr_dijkstraNearCost + + * dijkstraNearCost(Combinations) + * dijkstraNearCost(Many to Many) + * dijkstraNearCost(Many to One) + * dijkstraNearCost(One to Many) + +* Coloring + + * pgr_sequentialVertexColoring + +* Topology + + * pgr_extractVertices + +* Traversal + + * depthFirstSearch(Multiple vertices) + * depthFirstSearch(Single vertex) pgRouting 3.2.2 Release Notes ------------------------------------------------------------------------------- @@ -67,7 +92,7 @@ To see all issues & pull requests closed by this release see the [Git closed mil * pgr_depthFirstSearch * Dijkstra Near - * pgr_dijkstraNearCost + * pgr_dijkstraNear * pgr_dijkstraNear(One to Many) * pgr_dijkstraNear(Many to One) diff --git a/cmake/pgr/Version.cmake b/cmake/pgr/Version.cmake index bc249eb9974..7bddf9f35ed 100644 --- a/cmake/pgr/Version.cmake +++ b/cmake/pgr/Version.cmake @@ -13,7 +13,7 @@ set(PROJECT_FULL_VERSION "v${PROJECT_VERSION}${PROJECT_VERSION_DEV}") if (PROJECT_VERSION_DEV) set(PROJECT_DOC_LINK "https://docs.pgrouting.org/dev/en") else() - set(PROJECT_DOC_LINK "https://docs.pgrouting.org/${PROJECT_LIB_VERSION}/en") + set(PROJECT_DOC_LINK "https://docs.pgrouting.org/latest/en") endif()