diff --git a/CHANGELOG.md b/CHANGELOG.md index b25e993f..c1283a0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.7.2...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.7.3...HEAD + +## [0.7.3-rc] - 2024-02-20 + +### Changed + +- Improve upstream source fallback logging ([#454]) +- Use a consistent length for project build ID ([#456]) +- Update kit metadata schema version to v3 due to changes in advisory generation ([#459]) + +[#454]: https://github.com/bottlerocket-os/twoliter/pull/454 +[#456]: https://github.com/bottlerocket-os/twoliter/pull/456 +[#459]: https://github.com/bottlerocket-os/twoliter/pull/459 + +[0.7.3]: https://github.com/bottlerocket-os/twoliter/compare/v0.7.1...v0.7.3 ## [0.7.2] - 2025-02-05 diff --git a/Cargo.lock b/Cargo.lock index 8f3afb22..d283e9b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.7.2" +version = "0.7.3-rc" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 8213e138..27af2781 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ pubsys-setup = { version = "0.1", path = "tools/pubsys-setup", artifact = [ "bin testsys = { version = "0.1", path = "tools/testsys", artifact = [ "bin:testsys" ] } testsys-config = { version = "0.1", path = "tools/testsys-config" } testsys-model = { version = "0.0.15", git = "https://github.com/bottlerocket-os/bottlerocket-test-system", tag = "v0.0.15" } -twoliter = { version = "0.7.2", path = "twoliter", artifact = [ "bin:twoliter" ] } +twoliter = { version = "0.7.3-rc", path = "twoliter", artifact = [ "bin:twoliter" ] } unplug = { version = "0.1", path = "tools/unplug", artifact = [ "bin:unplug" ] } update-metadata = { version = "0.1", path = "tools/update-metadata" } diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index 640917d8..a908f2ea 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.7.2" +version = "0.7.3-rc" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]