diff --git a/CHANGELOG.md b/CHANGELOG.md index cccb06a0..3eff77db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -n.n.n / 2023-05-30 +v4.3.0 / 2023-05-30 ================== * Allow creating a Matrix based on a function from position to value diff --git a/Cargo.toml b/Cargo.toml index e3ac6c1d..40a0eefb 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.2.1" +version = "4.3.0" authors = ["Samuel Tardieu "] categories = ["algorithms"] readme = "README.md" diff --git a/README.md b/README.md index 66b2eb0a..06166bb6 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ In your `Cargo.toml`, put: ``` ini [dependencies] -pathfinding = "4.2.1" +pathfinding = "4.3.0" ``` You can then pull your preferred algorithm (BFS in this example) using: