From 2af88a196b081b615ca367a668631e3600181b4c Mon Sep 17 00:00:00 2001 From: androiddrew Date: Tue, 30 Jan 2018 09:26:15 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apistar_mail/__init__.py | 2 +- setup.cfg | 5 +++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apistar_mail/__init__.py b/apistar_mail/__init__.py index f898b0c..653cb55 100644 --- a/apistar_mail/__init__.py +++ b/apistar_mail/__init__.py @@ -2,6 +2,6 @@ __author__ = """Drew Bednar""" __email__ = 'drew@androiddrew.com' -__version__ = '0.1.1' +__version__ = '0.2.0' from .mail import mail_component, Message, Mail # NOQA: F401 diff --git a/setup.cfg b/setup.cfg index 7f1cb74..ae0e6f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 [bumpversion:file:setup.py] search = version='{current_version}' @@ -13,4 +13,5 @@ replace = __version__ = '{new_version}' python-tag = py35 [metadata] -license_file = LICENSE \ No newline at end of file +license_file = LICENSE + diff --git a/setup.py b/setup.py index f1e1f2a..75d7d17 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ test_requirements = [ setup( name='apistar_mail', - version='0.1.1', + version='0.2.0', description="A simple email Component for APIStar", long_description=readme + '\n\n' + history, author="Drew Bednar",