Skip to content

Commit

Permalink
Technical/Update releasing flow (#151)
Browse files Browse the repository at this point in the history
* Updated CI scripts (tag/release)
* Updated download script
* Updated changelog
  • Loading branch information
bestwebua authored Jan 11, 2023
1 parent 16fa025 commit 7fc538a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .circleci/scripts/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ then
echo "Pushing new semver tag to GitHub..."
git tag "$tag_candidate"
git push --tags
echo "Updating develop branch with new semver tag..."
git checkout develop
git merge "$tag_candidate" --ff --no-edit
git push origin develop
else
echo "Latest changelog tag ($tag_candidate) already released on GitHub. Tagging is not required."
fi
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.5] - 2023-01-11

### Updated

- Updated `CI` scripts (tag/release)
- Updated download script

## [2.0.4] - 2023-01-03

### Updated
Expand Down

0 comments on commit 7fc538a

Please sign in to comment.