From a7992a1bb033a93af8feec0c2e2d485f8f4a82ed Mon Sep 17 00:00:00 2001 From: androiddrew Date: Mon, 14 May 2018 11:02:48 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apistar_mail/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apistar_mail/__init__.py b/apistar_mail/__init__.py index 653cb55..bc17249 100644 --- a/apistar_mail/__init__.py +++ b/apistar_mail/__init__.py @@ -2,6 +2,6 @@ __author__ = """Drew Bednar""" __email__ = 'drew@androiddrew.com' -__version__ = '0.2.0' +__version__ = '0.2.1' from .mail import mail_component, Message, Mail # NOQA: F401 diff --git a/setup.cfg b/setup.cfg index ae0e6f6..798693d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 [bumpversion:file:setup.py] search = version='{current_version}' diff --git a/setup.py b/setup.py index 6cf114f..bc635cc 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ test_requirements = [ setup( name='apistar-mail', - version='0.2.0', + version='0.2.1', description="A simple email Component for APIStar", long_description=readme + '\n\n' + history, author="Drew Bednar",