diff --git a/CHANGES.rst b/CHANGES.rst index 5239c0c..bfca7d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,7 @@ all releases are available on `Anaconda.org - :gh:`1` allowed LaTeX tasks to have more than one dependency and allows to parametrize over latex options and latex documents. It also prepares release v0.0.2. +- :gh:`2` fixes the release. 0.0.1 - 2020-07-20 diff --git a/environment.yml b/environment.yml index 9c6fd8a..ed81146 100644 --- a/environment.yml +++ b/environment.yml @@ -15,6 +15,7 @@ dependencies: - pytask >= 0.0.4 # Misc + - bumpversion - jupyterlab - matplotlib - pdbpp diff --git a/setup.cfg b/setup.cfg index ecff700..c99304a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,10 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.0.2 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))(\-?((dev)?(?P\d+))?) -serialize = - {major}.{minor}.{patch}dev{dev} - {major}.{minor}.{patch} +serialize = + {major}.{minor}.{patch}dev{dev} + {major}.{minor}.{patch} [bumpversion:file:setup.py] -[bumpversion:file:docs/conf.py] - [bumpversion:file:src/pytask_latex/__init__.py] diff --git a/setup.py b/setup.py index 7774222..1e4a4c6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="pytask-latex", - version="0.0.1", + version="0.0.2", packages=find_packages(where="src"), package_dir={"": "src"}, entry_points={"pytask": ["pytask_latex = pytask_latex.plugin"]}, diff --git a/src/pytask_latex/__init__.py b/src/pytask_latex/__init__.py index e69de29..3b93d0b 100644 --- a/src/pytask_latex/__init__.py +++ b/src/pytask_latex/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.2"