Skip to content

Commit

Permalink
Upgrade version to 0.1.6 due to bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwen committed Feb 14, 2020
1 parent 55a9df2 commit 01bf7fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kliff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .log import Logger


__version__ = "0.1.5"
__version__ = '0.1.6'

logger = Logger(level="info")
2 changes: 1 addition & 1 deletion utils/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def update_version(version, path, key, in_quotes=False, extra_space=False):


if __name__ == "__main__":
kliff_v = "0.1.5"
kliff_v = "0.1.6"
kliff_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
path = os.path.join(kliff_dir, "kliff", "__init__.py")
update_version(kliff_v, path, "__version__", True, True)

0 comments on commit 01bf7fe

Please sign in to comment.