From 01ebf3cd0a36d3682d3d78ba03c10b73a33b0e93 Mon Sep 17 00:00:00 2001 From: Sumukh Ballal Date: Wed, 17 Apr 2024 15:53:51 -0700 Subject: [PATCH] Update the twoliter version to v0.1.1 --- CHANGELOG.md | 13 ++++++++++++- Cargo.lock | 2 +- twoliter/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6975c451a..901c84fa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2024-04-17 + +### Added + +### Changed + +- Use Openssl to generate HMAC in rpm2img ([#196]) + +[#196]: https://github.com/bottlerocket-os/twoliter/pull/196 + ## [0.1.0] - 2024-04-08 ### Added @@ -161,7 +171,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.1.0...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/bottlerocket-os/twoliter/compare/v0.1.0...v0.1.1 [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 diff --git a/Cargo.lock b/Cargo.lock index ce6bd709e..48d31fa6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3614,7 +3614,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index dfb835c72..847b0f084 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]