Skip to content
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
7 changes: 4 additions & 3 deletions .scripts/release_boil.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,18 @@ if git diff-index --quiet HEAD --; then
exit 1
fi

git add rust/boil/CHANGELOG.md rust/boil/Cargo.toml
git add rust/boil/CHANGELOG.md rust/boil/Cargo.*
git commit --message "chore(boil): Release $CLEANED_BUMPED_VERSION" --no-verify --gpg-sign

echo "Pushing changes and raising PR"
CHANGELOG_SUMMARY=$(git-cliff --config rust/boil/cliff.toml --tag "$BUMPED_VERSION" --strip header --unreleased)
PR_BODY="This PR was raised automatically by a release script. It releases $BUMPED_VERSION:\n\n$CHANGELOG_SUMMARY)"
PR_BODY=$(mktemp)
echo -e "This PR was raised automatically by a release script. It releases $BUMPED_VERSION:\n$CHANGELOG_SUMMARY" > "$PR_BODY"

git push --set-upstream origin "$RELEASE_BRANCH"
gh pr create --base main \
--title "chore(boil): Release $CLEANED_BUMPED_VERSION" \
--body "$PR_BODY" \
--body-file "$PR_BODY" \
--assignee "@me" \
--draft

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.

8 changes: 7 additions & 1 deletion rust/boil/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@

All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.1.5] - 2025-10-14

[See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.1.4..boil-0.1.5)

### Features

- Support Containerfiles per version ([#1302](https://github.com/stackabletech/docker-images/pull/1302)).

### Miscellaneous

- Add release script and changelog ([#1303](https://github.com/stackabletech/docker-images/pull/1303)).

## [0.1.4] - 2025-09-30

[See complete diff](https://github.com/stackabletech/docker-images/compare/boil-0.1.3..boil-0.1.4)
Expand Down
2 changes: 1 addition & 1 deletion rust/boil/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boil"
version = "0.1.4" # Managed by .scripts/release_boil.sh
version = "0.1.5" # Managed by .scripts/release_boil.sh
edition = "2024"
authors.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion rust/boil/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ sort_commits = "newest"
filter_commits = true

commit_parsers = [
{ message = "^chore\\(boil\\): Release", skip = true },
{ message = "^feat\\(boil\\)", group = "<!-- 0 --> Features" },
{ message = "^fix\\(boil\\)", group = "<!-- 1 --> Bug Fixes" },
{ message = "^docs?\\(boil\\)", group = "<!-- 2 --> Documentation" },
{ message = "^(perf|refactor|test)\\(boil\\)", group = "<!-- 3 --> Improvements" },
{ message = "^chore\\(boil\\): Improve", group = "<!-- 3 --> Improvements" },
{ message = "^chore\\(boil\\)", group = "<!-- 4 --> Miscellaneous" },
{ message = "^chore\\(boil\\): Release", skip = true },
]

commit_preprocessors = [
Expand Down