diff --git a/CHANGELOG.md b/CHANGELOG.md index 600f28af..8cd5c7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,14 +18,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Prevent leaking tempfiles when executing krane ([#423], [#430], [#433]) - Stop dereferencing symlinks when traversing project directory ([#431]) - Drop unnecessary `--all` flag from dnf, allowing builds using dnf5 ([#435]) [#423]: /~https://github.com/bottlerocket-os/twoliter/pull/423 -[#430]: /~https://github.com/bottlerocket-os/twoliter/pull/430 [#431]: /~https://github.com/bottlerocket-os/twoliter/pull/431 -[#433]: /~https://github.com/bottlerocket-os/twoliter/pull/433 [#435]: /~https://github.com/bottlerocket-os/twoliter/pull/435 [0.7.0]: /~https://github.com/bottlerocket-os/twoliter/compare/v0.6.0...v0.7.0 diff --git a/Cargo.lock b/Cargo.lock index 78fc65b3..2b3c2379 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3908,7 +3908,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.7.0-rc1" +version = "0.7.0-rc2" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 332774b1..fb6dcd64 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.14", git = "/~https://github.com/bottlerocket-os/bottlerocket-test-system", tag = "v0.0.14" } -twoliter = { version = "0.7.0-rc1", path = "twoliter", artifact = [ "bin:twoliter" ] } +twoliter = { version = "0.7.0-rc2", 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 2ad97e0b..35848835 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.7.0-rc1" +version = "0.7.0-rc2" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]