diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0ad41..01b361d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -n.n.n / 2024-12-10 +v4.12.0 / 2024-12-10 ================== * fix(doc): reference `count_paths` from top-level documentation diff --git a/Cargo.toml b/Cargo.toml index 0190d6e..fb4ff73 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.11.0" +version = "4.12.0" authors = ["Samuel Tardieu "] categories = ["algorithms"] readme = "README.md" diff --git a/README.md b/README.md index d0c1f05..85f7500 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ In your `Cargo.toml`, put: ``` ini [dependencies] -pathfinding = "4.11.0" +pathfinding = "4.12.0" ``` You can then pull your preferred algorithm (BFS in this example) using: