From f4195d84217a12c037ac8b0b703ad0d99d2f3a30 Mon Sep 17 00:00:00 2001 From: Sam Berning Date: Mon, 11 Nov 2024 20:50:55 +0000 Subject: [PATCH] chore: prepare for release 0.5.1-rc1 Signed-off-by: Sam Berning --- CHANGELOG.md | 14 +++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- twoliter/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7fe74fa..2aec2e2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.5.0...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.5.1...HEAD + +## [0.5.1] - 2024-11-11 + +### Fixed + +- Allow projects to not have a `sources/` dir ([#404]) +- Write krane to a tempfile instead of a sealed anonymous file ([#405]) + +[#404]: https://github.com/bottlerocket-os/twoliter/pull/404 +[#405]: https://github.com/bottlerocket-os/twoliter/pull/405 + +[0.5.1]: https://github.com/bottlerocket-os/twoliter/compare/v0.5.0...v0.5.1 ## [0.5.0] - 2024-10-10 diff --git a/Cargo.lock b/Cargo.lock index dffd622c..aee8b996 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3856,7 +3856,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.5.0" +version = "0.5.1-rc1" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 9f0392b0..cf0168c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,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.14", git = "https://github.com/bottlerocket-os/bottlerocket-test-system", tag = "v0.0.14" } -twoliter = { version = "0.5.0", path = "twoliter", artifact = [ "bin:twoliter" ] } +twoliter = { version = "0.5.1-rc1", 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 42380ecb..e46020f1 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.5.0" +version = "0.5.1-rc1" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]