From 4720301a70f36630369f6a5372bca5235b54f240 Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Wed, 6 Sep 2023 12:01:50 -0700 Subject: [PATCH] prepare to release v0.0.3 --- CHANGELOG.md | 24 +++++++++++++++++++++--- Cargo.lock | 2 +- twoliter/Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e06d6f308..0fd281210 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.3] - 2023-09-13 + +### Added + +- Bottlerocket build system tools: + - `buildsys` + - `pubsys` + - `pubsys-setup` + - `testsys` + - `scripts` + - `Dockerfile` +- Add `cargo dist` for binary releases. + +### Changed + +- Update docker run commands to use current `--security-opt` syntax. + ## [0.0.2] - 2023-08-18 ### Changed @@ -21,6 +38,7 @@ 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.2...HEAD -[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 +[unreleased]: https://github.com/webern/twoliter/compare/v0.0.3...HEAD +[0.0.3]: https://github.com/webern/twoliter/compare/v0.0.2...v0.0.3 +[0.0.2]: https://github.com/webern/twoliter/compare/v0.0.1...v0.0.2 +[0.0.1]: https://github.com/webern/twoliter/releases/tag/v0.0.1 diff --git a/Cargo.lock b/Cargo.lock index d15c60465..09f180d1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4124,7 +4124,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.0.0" +version = "0.0.3-rc1" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index 6c606ec67..2cd45e72b 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.0.0" +version = "0.0.3-rc1" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]