diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e81767..f787eea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.3.3 (2024-03-21) + +This is a minor bugfix release. It relaxes the reqwest dependency, which had been bumped to 0.12.0 in the previous release. It will now accept either 0.11.0 or any later version. + # Version 0.3.2 (2024-03-21) This is a minor bugfix release: diff --git a/Cargo.lock b/Cargo.lock index e2182f7..1d0eea9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,7 +116,7 @@ dependencies = [ [[package]] name = "axoupdater" -version = "0.3.2" +version = "0.3.3" dependencies = [ "axoasset 0.9.0", "axoprocess", @@ -133,7 +133,7 @@ dependencies = [ [[package]] name = "axoupdater-cli" -version = "0.3.2" +version = "0.3.3" dependencies = [ "axocli", "axoupdater", diff --git a/Cargo.toml b/Cargo.toml index 27e6a65..f8a4219 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["axoupdater", "axoupdater-cli"] resolver = "2" [workspace.package] -version = "0.3.2" +version = "0.3.3" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://github.com/axodotdev/axoupdater" diff --git a/axoupdater-cli/Cargo.toml b/axoupdater-cli/Cargo.toml index 2140622..08310b2 100644 --- a/axoupdater-cli/Cargo.toml +++ b/axoupdater-cli/Cargo.toml @@ -12,7 +12,7 @@ readme = "../README.md" [dependencies] axocli = "0.2.0" -axoupdater = { version = "=0.3.2", path = "../axoupdater", features = ["blocking"] } +axoupdater = { version = "=0.3.3", path = "../axoupdater", features = ["blocking"] } # errors miette = "7.2.0"