diff --git a/e2j2/cli.py b/e2j2/cli.py index 6ede68a..924bf2d 100644 --- a/e2j2/cli.py +++ b/e2j2/cli.py @@ -100,7 +100,7 @@ def write_file(filename, content): def e2j2(): exit_code = 0 - args = arg_parse('e2j2', DESCRIPTION, '0.1.19') + args = arg_parse('e2j2', DESCRIPTION, '0.1.20') search_list = get_search_list(args.searchlist) recursive = args.recursive diff --git a/setup.py b/setup.py index ed1ec0e..14ed5d4 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ description = 'e2j2 is a commandline utility to render text/configuration files from jinja2 templates from shell environment variables' setup(name='e2j2', - version='0.1.19', + version='0.1.20', description=description, long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read(), install_requires=['jinja2>=2.10.1', 'python-consul>=0.6.0', 'deepmerge>=0.0.4'], diff --git a/upload.sh b/upload.sh index 83f2b45..89f2d01 100755 --- a/upload.sh +++ b/upload.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION='0.1.19' +VERSION='0.1.20' python setup.py sdist bdist_wheel gpg --detach-sign -a dist/e2j2-${VERSION}.tar.gz twine upload dist/e2j2-${VERSION}.tar.gz dist/e2j2-${VERSION}-py3-none-any.whl dist/e2j2-${VERSION}.tar.gz.asc