Skip to content

Commit

Permalink
Release v0.1.1 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrongmeal authored Jan 13, 2025
1 parent bb39fcd commit 3feae13
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
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

0 comments on commit 3feae13

Please sign in to comment.