diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a1291c2..40d7941f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.2...HEAD +## [0.4.3] - 2024-07-17 + +### Changes + +- Update rust nightly to newer version ([#325]) +- Fix image handling bugs in `twoliter update` ([#326]) + +[#325]: https://github.com/bottlerocket-os/twoliter/pull/325 +[#326]: https://github.com/bottlerocket-os/twoliter/pull/326 + +[0.4.3]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.2...v0.4.3 + ## [0.4.2] - 2024-07-11 ### Added diff --git a/Cargo.lock b/Cargo.lock index 48e551449..20852d433 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3849,7 +3849,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index 766fdaac5..79d86bdf3 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.4.2" +version = "0.4.3" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]