Skip to content

Commit

Permalink
[doc] Updating NEWS and links point to latest'
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Nov 9, 2021
1 parent bd51d81 commit eca6a95
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
47 changes: 36 additions & 11 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion cmake/pgr/Version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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()


Expand Down

0 comments on commit eca6a95

Please sign in to comment.