From 838c1e931695843b82e4154cc74491a077f9ae51 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 7 Jan 2021 19:37:00 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.2=20=E2=86=92=200.6.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- template/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index f5f7106..7f13106 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.6.3 commit = True tag = True diff --git a/setup.py b/setup.py index c8e19d4..c98f9bc 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="template", - version="0.6.2", + version="0.6.3", 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 d757245..dc65dc5 100644 --- a/template/__init__.py +++ b/template/__init__.py @@ -16,7 +16,7 @@ from jinja2 import Environment import template.filters -__version__ = "0.6.2" +__version__ = "0.6.3" def render(template_string): -- GitLab