diff --git a/CHANGELOG.md b/CHANGELOG.md index 0082b801d..41b755c7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2024-04-08 + +### Added + +- add FIPS-related functionality ([#181]) +- twoilter: add build clean command ([#183]) + +[#181]: https://github.com/bottlerocket-os/twoliter/pull/181 +[#183]: https://github.com/bottlerocket-os/twoliter/pull/183 + +### Changed + +- Fixed Gomod.rs bug ([#178]) +- twoliter: use Twoliter.toml for cache layers ([#179]) +- Update readme ([#182, #184]) +- generate HMAC for kernel on build ([#187]) + +[#178]: https://github.com/bottlerocket-os/twoliter/pull/178 +[#179]: https://github.com/bottlerocket-os/twoliter/pull/179 +[#182]: https://github.com/bottlerocket-os/twoliter/pull/182 +[#184]: https://github.com/bottlerocket-os/twoliter/pull/184 +[#187]: https://github.com/bottlerocket-os/twoliter/pull/187 + ## [0.0.7] - 2024-03-19 ### Added @@ -136,7 +159,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Bottlerocket's `cargo make` build system. - `Makefile.toml` taken from the Bottlerocket project. -[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.7...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.1.0...HEAD +[0.1.0]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.7...v0.1.0 [0.0.7]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.4...v0.0.5 diff --git a/Cargo.lock b/Cargo.lock index ce6bd709e..c601a8edd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3614,7 +3614,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.1.0" +version = "0.1.0-rc2" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index dfb835c72..810657961 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.1.0" +version = "0.1.0-rc2" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]