diff --git a/setup.cfg b/setup.cfg index a9495e6589a9ac2beecddf09a5fc403ebd877738..f5f7106aab4269f514162e590e20cfc6c3ebf5c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True tag = True diff --git a/setup.py b/setup.py index d40019bc916e8047a013056cd0c4688d307af292..c8e19d4acf20d60551407cb935289c0be5acfa51 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="template", - version="0.6.1", + version="0.6.2", description="""A CLI tool for generating files from Jinja2 templates and environment variables.""", long_description=open("README.rst", "r").read(), diff --git a/template/__init__.py b/template/__init__.py index d586a85921b255e437449f91dd890a7ff6765ff3..d7572452275d7bdf3fdc17a5956a30b4bfc199e3 100644 --- a/template/__init__.py +++ b/template/__init__.py @@ -16,7 +16,7 @@ from jinja2 import Environment import template.filters -__version__ = "0.6.1" +__version__ = "0.6.2" def render(template_string):