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",