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

Fix for action releases and changelog updates #371

Merged
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
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,13 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MATRIX_DIST_ARGS: ${{ matrix.dist-args }}
MATRIX_INSTALL_DIST: ${{ matrix.install-dist }}
GITHUB_REF_NAME: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install cargo-dist
run: ${MATRIX_INSTALL_DIST}
run: ${{ matrix.install-dist }}
- name: Install Cross
# Pin cargo cross to a version that we know is working for us.
run: |
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [0.4.6] - 2024-09-11
## [0.4.6] - 2024-09-16

### Changes

- Add support for vendor override files ([#344])
- Updated buildsys to add new 'build-all' target, reduce build time ([#345], [#357])
- CICD, workspace and doc improvements ([#353], [#354], [#355], [#358])
- Add support for partial lockfile validation & refactor lock interfaces ([#361], [#363])
- Add support for partial lockfile validation & refactor lock interfaces, improve logging ([#361], [#363], [#370])
- Update tough dependencies to latest versions ([#365])
sumukhballal marked this conversation as resolved.
Show resolved Hide resolved

- Drop variant argument for variant subcommands ([#369])
- Add support for publishing kits to repositories that do not share a name with the kit ([#372])

[#344]: https://github.com/bottlerocket-os/twoliter/pull/344
[#345]: https://github.com/bottlerocket-os/twoliter/pull/345
Expand All @@ -30,6 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#361]: https://github.com/bottlerocket-os/twoliter/pull/361
[#363]: https://github.com/bottlerocket-os/twoliter/pull/363
[#365]: https://github.com/bottlerocket-os/twoliter/pull/365
[#369]: https://github.com/bottlerocket-os/twoliter/pull/369
[#370]: https://github.com/bottlerocket-os/twoliter/pull/370
[#372]: https://github.com/bottlerocket-os/twoliter/pull/372

[0.4.6]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.5...v0.4.6

Expand Down
Loading