From c499beb68ca3b1516e3a15c75e93fa5dc845bc19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Thu, 20 Oct 2022 15:14:00 +0200 Subject: [PATCH] Release v1.0.5 --- CHANGELOG.md | 5 +++++ module.json | 4 ++-- rust/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7051d4..63600ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.5 +### Performance +- The gridless pathfinder is now twice as fast on scenes with many walls + + ## 1.0.4 ### Bugfixes - Fixed a bug that caused non-optimal paths to be generated for large hex tokens diff --git a/module.json b/module.json index b75587b..a5e8d67 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "routinglib", "title": "routinglib", "description": "A library module to calculate a path between two points", - "version": "1.0.4", + "version": "1.0.5", "compatibility": { "minimum": "10", "verified": "10" @@ -18,7 +18,7 @@ "js/main.js" ], "url": "https://github.com/manuelVo/foundryvtt-routinglib", - "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.4/routinglib-1.0.4.zip", + "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.5/routinglib-1.0.5.zip", "manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-routinglib/master/module.json", "readme": "https://github.com/manuelVo/foundryvtt-routinglib/blob/master/README.md", "changelog": "https://github.com/manuelVo/foundryvtt-routinglib/blob/master/CHANGELOG.md", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 2c1755b..a1bbcb2 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gridless-pathfinding" -version = "1.0.4" +version = "1.0.5" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html