From 3bf165d00840c7c4bc38eeed3b41a2af0ad59a8e Mon Sep 17 00:00:00 2001 From: Nick Ficano Date: Mon, 18 Sep 2017 12:04:07 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1=20=E2=86=92=202.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aws_lambda/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aws_lambda/__init__.py b/aws_lambda/__init__.py index d51dd2b..bd0a43b 100755 --- a/aws_lambda/__init__.py +++ b/aws_lambda/__init__.py @@ -2,7 +2,7 @@ # flake8: noqa __author__ = 'Nick Ficano' __email__ = 'nficano@gmail.com' -__version__ = '2.0.1' +__version__ = '2.1.0' from .aws_lambda import deploy, invoke, init, build, upload, cleanup_old_versions diff --git a/setup.cfg b/setup.cfg index ae1f049..299b230 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 2.0.1 +current_version = 2.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/setup.py b/setup.py index 20fd4de..52539e3 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='python-lambda', - version='2.0.1', + version='2.1.0', description='The bare minimum for a Python app running on Amazon Lambda.', long_description=readme, author='Nick Ficano',