diff --git a/HISTORY.rst b/HISTORY.rst index 649c7ac..0dfd482 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -78,3 +78,9 @@ History * Add option to set LaTeX program (e.g. lualatex) via PR from Tom Nurkkala (thanks, Tom!) + +0.1.5 (2020-01-04) +------------------ + +* Fix bug with tilde expansion on windows via PR rom asteppke + on github (thanks, asteppke!) diff --git a/itikz/__init__.py b/itikz/__init__.py index a6b3b20..1e37630 100644 --- a/itikz/__init__.py +++ b/itikz/__init__.py @@ -13,7 +13,7 @@ __author__ = """John Bjorn Nelson""" __email__ = 'jbn@abreka.com' -__version__ = '0.1.4' +__version__ = '0.1.5' IMPLICIT_PIC_TMPL = Template(r"""\documentclass[tikz]{standalone} diff --git a/setup.cfg b/setup.cfg index 7990fa8..9b4abfb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.4 +current_version = 0.1.5 commit = True tag = True diff --git a/setup.py b/setup.py index bba6a0c..bf96d26 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/jbn/itikz', - version='0.1.4', + version='0.1.5', zip_safe=False, )