Skip to content

Commit

Permalink
Bump version: 0.1.4 → 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
seahyc committed Sep 18, 2024
1 parent 743b899 commit a200b6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.4
current_version = 0.1.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def get_version():
version = os.environ.get('GITHUB_REF_NAME')
if version and version.startswith('v'):
return version[1:] # Remove 'v' prefix
return '0.1.4' # Default version if not a release
return '0.1.5' # Default version if not a release

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand Down
2 changes: 1 addition & 1 deletion src/ocbc_dbs_statement_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.4"
__version__ = "0.1.5"

from .main import parse_bank_statement, verify_transactions

Expand Down

0 comments on commit a200b6e

Please sign in to comment.