From 7266d1a7c8ce5b08c55ddfa8f363e15bb00327c7 Mon Sep 17 00:00:00 2001 From: Gordon Myers Date: Wed, 19 Sep 2018 15:40:16 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.2.5=20=E2=86=92=203.2.6?= 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 346e493..d9978d0 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__ = '3.2.5' +__version__ = '3.2.6' from .aws_lambda import deploy, deploy_s3, invoke, init, build, upload, cleanup_old_versions diff --git a/setup.cfg b/setup.cfg index f2af3e8..a043461 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 3.2.5 +current_version = 3.2.6 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/setup.py b/setup.py index fc851de..1ba7291 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='python-lambda', - version='3.2.5', + version='3.2.6', description='The bare minimum for a Python app running on Amazon Lambda.', long_description=readme, author='Nick Ficano',