From 7d32229d829d1ce09c5294c681cec7b100a2fe45 Mon Sep 17 00:00:00 2001 From: "aws-dr-tools-github-user@amazon.com" Date: Tue, 22 May 2018 23:01:55 +0000 Subject: [PATCH] Bumping version to 1.3.0 --- CHANGELOG.rst | 4 ++-- chalice/app.py | 2 +- docs/source/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1f267fcbe..fbb8ebf22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ CHANGELOG ========= -Next Release (TBD) -================== +1.3.0 +===== * Add support for Lambdas in a VPC (`#413 `__, diff --git a/chalice/app.py b/chalice/app.py index cf06de288..05bfb3005 100644 --- a/chalice/app.py +++ b/chalice/app.py @@ -10,7 +10,7 @@ from collections import defaultdict, Mapping -__version__ = '1.2.3' +__version__ = '1.3.0' # Implementation note: This file is intended to be a standalone file diff --git a/docs/source/conf.py b/docs/source/conf.py index 5128b2539..f282bf6ab 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = u'1.2' +version = u'1.3' # The full version, including alpha/beta/rc tags. -release = u'1.2.3' +release = u'1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 5664399fe..0806ff144 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='chalice', - version='1.2.3', + version='1.3.0', description="Microframework", long_description=README, author="James Saryerwinnie",