Skip to content

Commit

Permalink
Update version and modify publish workflow
Browse files Browse the repository at this point in the history
Bumped version from 0.4.1.dev0 to 0.5.0 in __about__.py. Updated the GitHub Actions publish workflow to increment minor versions instead of patch versions until v1.0.
  • Loading branch information
pateash committed Sep 7, 2024
1 parent 0080567 commit 32c07e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jobs:
else
# simple version are created manually from code edits.
echo "This is a simple version: $VERSION, we have released it, converting into next dev."
hatch version patch
#hatch version patch
hatch version minor # TODO: we are using MINOR and increasing minor versions until v1.0
hatch version dev
fi
NEW_VERSION=`hatch version`
Expand Down
2 changes: 1 addition & 1 deletion src/hckr/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024-present Ashish Patel <ashishpatel0720@gmail.com>
#
# SPDX-License-Identifier: MIT
__version__ = "0.4.1.dev0"
__version__ = "0.5.0"

0 comments on commit 32c07e6

Please sign in to comment.