diff --git a/CHANGELOG.md b/CHANGELOG.md index 602dd3c..90b38a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ Unreleased ========== +0.5.2 (2024-01-15) +================== + - Fix merging of `extra_options` configuration in `build` section - Fix merging priority of `build` section options +- Update `toml` to 0.8 +- Update `wasm-pack` to 0.12 0.5.1 (2023-04-16) ================== diff --git a/Cargo.toml b/Cargo.toml index 42885af..5bbd6b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-screeps" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["David Ross "] documentation = "https://github.com/rustyscreeps/cargo-screeps/" @@ -32,5 +32,5 @@ serde = { version = "1", features = ["derive"] } serde_ignored = "0.1" serde_json = "1" structopt = "0.3" -toml = "0.7" -wasm-pack = { version = "0.11", default-features = false } +toml = "0.8" +wasm-pack = { version = "0.12", default-features = false }