From 432c4175f9bf210273c7e25080d76b1be5fa3176 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Wed, 14 Dec 2022 19:23:34 +0100 Subject: [PATCH] chore: Release pathfinding version 4.1.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 9c9a1d1a..e6739f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -n.n.n / 2022-12-14 +v4.1.1 / 2022-12-14 ================== * Better performances in Grid, Kruskal and Edmonds-Karp diff --git a/Cargo.toml b/Cargo.toml index fc72b83c..922afe5b 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.1.0" +version = "4.1.1" authors = ["Samuel Tardieu "] categories = ["algorithms"] readme = "README.md" diff --git a/README.md b/README.md index f9a60f2f..d2c4d122 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ In your `Cargo.toml`, put: ``` ini [dependencies] -pathfinding = "4.1.0" +pathfinding = "4.1.1" ``` You can then pull your preferred algorithm (BFS in this example) using: