Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: prepare for release 0.5.0-rc1 #393

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.7...HEAD
[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.5.0...HEAD

## [0.5.0] - 2024-10-10

### Added

- Use bundled `krane` for OCI repository support ([#387])

### Changed

- Increment kit metadata version. This makes this version of Twoliter incompatible with kits built
from older versions of Twoliter, and older versions of Twoliter incompatible with kits built from
this version. ([#387])
Comment on lines +20 to +22
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Increment kit metadata version. This makes this version of Twoliter incompatible with kits built
from older versions of Twoliter, and older versions of Twoliter incompatible with kits built from
this version. ([#387])
- Make this version of Twoliter incompatible with kits built
from older versions of Twoliter, and older versions of Twoliter incompatible with kits built from
this version. ([#387])

- Unconditionally use an RPMs NEVR in a variant's application inventory ([#384])

### Fixed

- Allow `find-debuginfo` to manage its own PATH ([#383])
- Refrain from defining RPM macros twice ([#392])

### Removed

- Remove the ability to use `docker` or `crane` from system PATH ([#387])

[#383]: https://github.com/bottlerocket-os/twoliter/pull/383
[#384]: https://github.com/bottlerocket-os/twoliter/pull/384
[#387]: https://github.com/bottlerocket-os/twoliter/pull/387
[#392]: https://github.com/bottlerocket-os/twoliter/pull/392

[0.5.0]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.7...v0.5.0

## [0.4.7] - 2024-10-07

Expand All @@ -26,6 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#381]: https://github.com/bottlerocket-os/twoliter/pull/381
[#385]: https://github.com/bottlerocket-os/twoliter/pull/385

[0.4.7]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.6...v0.4.7

## [0.4.6] - 2024-09-16

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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.4.7", path = "twoliter", artifact = [ "bin:twoliter" ] }
twoliter = { version = "0.5.0-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" }

Expand Down
2 changes: 1 addition & 1 deletion twoliter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twoliter"
version = "0.4.7"
version = "0.5.0-rc1"
edition = "2021"
description = "A command line tool for creating custom builds of Bottlerocket"
authors = ["Matthew James Briggs <brigmatt@amazon.com>"]
Expand Down
Loading