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 v0.1.1 #21

Merged
merged 2 commits into from
Jan 13, 2025
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [v0.1.1] - 2025-01-13

### Documentation

- Update README with detailed steps ([#20](https://github.com/s2-streamstore/s2-sdk-go/issues/20))

### Miscellaneous Tasks

- Add script for valid semver tag parsing ([#19](https://github.com/s2-streamstore/s2-sdk-go/issues/19))

## [v0.1.0] - 2025-01-10

### Features
Expand Down
7 changes: 7 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,15 @@ tasks:
vars:
SEMVER:
sh: ./scripts/semver.sh {{.VERSION}}
BRANCH: 'release-{{.SEMVER}}-{{now | unixEpoch}}'
cmds:
- git switch main
- git pull origin main
- git switch -c {{.BRANCH}}
- git cliff --unreleased --tag {{.SEMVER}} --prepend CHANGELOG.md
- git add CHANGELOG.md
- 'git commit -m "chore(release): {{.SEMVER}}"'
- echo "Push the branch '{{.BRANCH}}'. Once merged, create tag the release using 'task release:tag'"

release:tag:
requires:
Expand Down
Loading