Skip to content

Commit

Permalink
[RELEASE] - Release version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amuraru committed Jun 18, 2023
1 parent 8fc18f0 commit 633b7f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.0
current_version = 0.13.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# himl
A hierarchical config using yaml in Python.

Latest version is: 0.12.0
Latest version is: 0.13.0

## Description

Expand Down
2 changes: 1 addition & 1 deletion himl/main.py
Expand Up @@ -76,7 +76,7 @@ def get_parser(parser=None):
parser.add_argument('--list-merge-strategy', dest='merge_list_strategy', type=ListMergeStrategy, choices=list(ListMergeStrategy),
default='append',
help='override default merge strategy for list')
parser.add_argument('--version', action='version', version='%(prog)s v{version}'.format(version="0.12.0"),
parser.add_argument('--version', action='version', version='%(prog)s v{version}'.format(version="0.13.0"),
help='print himl version')
return parser

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@

setup(
name='himl',
version="0.12.0",
version="0.13.0",
description='A hierarchical config using yaml',
long_description=_readme + '\n\n',
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 633b7f0

Please sign in to comment.