From 90ccf7527e685e5b9704fd4ee981e046277634df Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 14 Apr 2021 21:12:48 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.6=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A bunch of new filters based the netaddr library. Requires installing with the package specifier. --- 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 e055c21..c44293f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.6 +current_version = 0.7.0 commit = True tag = True diff --git a/setup.py b/setup.py index 07e2fa7..42d8204 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from template import __doc__ as description setup( name="template", - version="0.6.6", + version="0.7.0", description=description, long_description=open("README.rst", "r").read(), long_description_content_type="text/x-rst", diff --git a/template/__init__.py b/template/__init__.py index 6849b12..59ce2f8 100644 --- a/template/__init__.py +++ b/template/__init__.py @@ -24,7 +24,7 @@ except ImportError: pass -__version__ = "0.6.6" +__version__ = "0.7.0" def render(template_string): -- GitLab