Skip to content

Commit

Permalink
(chore) bump version to v1.17.4 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Feb 17, 2023
1 parent 0177a1c commit aae84a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
TAG_MAJOR_MINOR_PATCH=${GITHUB_REF#refs/tags/}
TAG_MAJOR_MINOR=${TAG_MAJOR_MINOR_PATCH%.*}
TAG_MAJOR=${TAG_MAJOR_MINOR_PATCH%.*.*}
TAG_LATEST="LATEST"
TAG_LATEST="latest"
for TAG in $TAG_MAJOR_MINOR_PATCH $TAG_MAJOR_MINOR $TAG_MAJOR $TAG_LATEST
do
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ use patch releases for compatibility fixes instead.

## Unreleased

## [v1.17.4](https://github.com/allenai/beaker-py/releases/tag/v1.17.4) - 2023-02-17

### Fixed

- Fixed latest tag (was "LATEST", should have been "latest")

## [v1.17.3](https://github.com/allenai/beaker-py/releases/tag/v1.17.3) - 2023-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion beaker/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "1"
_MINOR = "17"
_PATCH = "3"
_PATCH = "4"
_SUFFIX = ""

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
python scripts/prepare_changelog.py
git add -A
git commit -m "Bump version to $TAG for release" || true && git push
git commit -m "(chore) bump version to $TAG for release" || true && git push
echo "Creating new git tag $TAG"
git tag "$TAG" -m "$TAG"
git push --tags
Expand Down

0 comments on commit aae84a9

Please sign in to comment.