diff --git a/CHANGELOG.md b/CHANGELOG.md index 97641205..40f69048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -n.n.n / 2023-08-02 +v4.3.1 / 2023-08-02 ================== * Move `cycle_detection` module into `directed` and deprecate the former diff --git a/Cargo.toml b/Cargo.toml index 2281cfea..67ccd7dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["shortest-path", "astar", "dijkstra", "flow", "graph"] license = "Apache-2.0/MIT" homepage = "https://rfc1149.net/devel/pathfinding.html" documentation = "https://docs.rs/pathfinding/" -version = "4.3.0" +version = "4.3.1" authors = ["Samuel Tardieu "] categories = ["algorithms"] readme = "README.md" diff --git a/README.md b/README.md index f8e31925..74b9fce4 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ In your `Cargo.toml`, put: ``` ini [dependencies] -pathfinding = "4.3.0" +pathfinding = "4.3.1" ``` You can then pull your preferred algorithm (BFS in this example) using: