Skip to content

Commit

Permalink
Add to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Nov 4, 2023
1 parent b0a3bd1 commit 10e12c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Next (YYYY-MM-DD)

- Clarify why and in which situations `AsyncGroupChild::wait` may not behave as expected when cancelled.
- Add `AsyncGroupChild::start_kill` to align with Tokio's `Child::start_kill`.
- Change `AsyncGroupChild::kill` to also `wait()` on the child, to align with Tokio's `Child::kill`.

## v3.0.0 (2023-10-30)

- Update `nix` to 0.27.
Expand Down
10 changes: 3 additions & 7 deletions bin/version
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ fi

date=$(date +%Y-%m-%d)
echo "Next version to be $newver ($date), creating..."
git switch -C release

sed -E -i "s/^## Next.*$/## Next (YYYY-MM-DD)\n\n## v$newver ($date)/1" CHANGELOG.md
sed -E -i "s/^command-group = \"$extver\"/command-group = \"$newver\"/1" README.md
Expand All @@ -49,13 +48,10 @@ sed -E -i "s/^version: \"?$extver\"?/version: \"$newver\"/1" CITATION.cff
sed -E -i "s/^date-released: .+$/date-released: $date/1" CITATION.cff

cargo check
cargo publish --dry-run

git commit -am "$newver"
git tag -sam "$newver" "v$newver"

echo "Pushing to upstream, make a PR for Bors then release with GH"
git push -u $upstream release

echo "Deleting local release branch"
git switch main
git branch -D release
git push --follow-tags $upstream $mainbranch
cargo publish --no-verify

0 comments on commit 10e12c2

Please sign in to comment.