From 454167b796c162e9cb69cb41ea2310d5ccafa277 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Tue, 17 Jan 2023 11:25:55 +0100 Subject: [PATCH] chore: Release pathfinding version 4.2.1 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e226f02..c86c7868 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -n.n.n / 2023-01-17 +v4.2.1 / 2023-01-17 ================== * Document that A*/Dijkstra/Fringe/idA* costs must be non-negative diff --git a/Cargo.toml b/Cargo.toml index 7c181190..bb82e33d 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.0" +version = "4.2.1" authors = ["Samuel Tardieu "] categories = ["algorithms"] readme = "README.md" diff --git a/README.md b/README.md index 639f2391..598d1f68 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ In your `Cargo.toml`, put: ``` ini [dependencies] -pathfinding = "4.2.0" +pathfinding = "4.2.1" ``` You can then pull your preferred algorithm (BFS in this example) using: