From f23016a8574730e72afe551d27012ff6e2c76ef8 Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Fri, 29 Sep 2023 15:04:59 -0700 Subject: [PATCH] update changelog and version for v0.0.4 --- CHANGELOG.md | 22 +++++++++++++++++++++- Cargo.lock | 2 +- twoliter/Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1388540c..ba1a2fad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4] - 2023-10-TBD + +### Added + +- Enable log level selection for Testsys and Pubsys through Twoliter ([#75]) +- Enable specification of Bottlerocket SDK in Twoliter.toml ([#89]) + +### Changed + +- Testsys: add image_id label to fix metal cluster conflicts ([#81]) +- Testsys: change update cluster shared security group name ([#67]) +- Remove Infrasys, an unused system, from the codebase ([#53]) + +[#53]: https://github.com/bottlerocket-os/twoliter/pull/53 +[#67]: https://github.com/bottlerocket-os/twoliter/pull/67 +[#75]: https://github.com/bottlerocket-os/twoliter/pull/75 +[#81]: https://github.com/bottlerocket-os/twoliter/pull/81 +[#89]: https://github.com/bottlerocket-os/twoliter/pull/89 + ## [0.0.3] - 2023-09-13 ### Added @@ -38,7 +57,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.3...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.4...HEAD +[0.0.4]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/bottlerocket-os/twoliter/compare/v0.0.1...v0.0.2 [0.0.1]: https://github.com/bottlerocket-os/twoliter/releases/tag/v0.0.1 diff --git a/Cargo.lock b/Cargo.lock index f1c7f3831..55ce34d3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3546,7 +3546,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.0.3" +version = "0.0.4" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index cdb1dede9..ff1e85cd3 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.0.3" +version = "0.0.4" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]