Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Bump 0.2.4 -> 0.3.0 (#11)
Browse files Browse the repository at this point in the history
* Bump 0.2.4 -> 0.3.0

* Fix sh syntax error

* Remove equality checks on versions
  • Loading branch information
cowboy-bebug authored Jun 28, 2020
1 parent 24756d4 commit 6d6f61b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,16 @@ jobs:
- name: Check for major / minor version bump
if: ${{ startsWith(github.head_ref, 'release') && github.ref != 'refs/heads/master' }}
run: |
if (($VERSION_OLD_MAJOR < $VERSION_NEW_MAJOR)) &&
(($VERSION_OLD_MINOR = $VERSION_NEW_MINOR)); then
if (($VERSION_OLD_MAJOR < $VERSION_NEW_MAJOR)); then
echo "Bumped major version $VERSION_OLD -> $VERSION_NEW"
exit 0
elif (($VERSION_OLD_MAJOR = $VERSION_NEW_MAJOR)) &&
(($VERSION_OLD_MINOR < $VERSION_NEW_MINOR)); then
elif (($VERSION_OLD_MINOR < $VERSION_NEW_MINOR)); then
echo "Bumped minor version $VERSION_OLD -> $VERSION_NEW"
exit 0
else
echo "Major / minor version must be bumped for release"
exit 1
fin
fi
- name: Create and push tag
if: github.ref == 'refs/heads/master'
run: |
Expand Down
2 changes: 1 addition & 1 deletion app_store_scraper/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "app-store-scraper"
__version__ = "0.2.4"
__version__ = "0.3.0"
__description__ = "Single API ☝ App Store Review Scraper 🧹"
__author__ = "Eric Lim"
__url__ = "https://github.com/cowboy-bebug/app-store-scraper"
Expand Down

0 comments on commit 6d6f61b

Please sign in to comment.