diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f53709..e7051d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.4 +### Bugfixes +- Fixed a bug that caused non-optimal paths to be generated for large hex tokens + + ## 1.0.3 ### Bugfixes - Fixed a bug that prevented pathfinding on hex to work when the hex size support module is not installed diff --git a/module.json b/module.json index 6ebdd2e..b75587b 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.3", + "version": "1.0.4", "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.3/routinglib-1.0.3.zip", + "download": "https://github.com/manuelVo/foundryvtt-routinglib/releases/download/v1.0.4/routinglib-1.0.4.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 226a9b6..2c1755b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gridless-pathfinding" -version = "1.12.8" +version = "1.0.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html