From 18aa1e3ca77c5f7575ccc3c6a316326199b81fae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Miguel=20Neves?= Date: Sun, 8 Mar 2020 21:36:45 +0000 Subject: [PATCH] 0.51.0 release --- CHANGELOG.md | 11 +++++++++++ zappa/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c60ff496e..41ae8b923 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Zappa Changelog +## 0.51.0 +* Lambda Layers +* Cognito support +* Skip venv check if --no_venv argument is passed +* Fix for abi3 filename matching +* Wait for the Load Balancer to become active before proceeding +* Add option 'Scheme' for alb config +* Allow full path exclusions while packaging +* Workaround for werkzeug incompatibility +* And assorted fixes + ## 0.50.0 * Updated manylinux to support manylinux1/manylinux2010/manylinux2014 packages * Fixed issue with duplicated cookie headers in API Gateway diff --git a/zappa/__init__.py b/zappa/__init__.py index 3bdb854d0..2a1d400bc 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -8,4 +8,4 @@ 'Zappa (and AWS Lambda) support the following versions of Python: {}'.format(formatted_supported_versions)) raise RuntimeError(err_msg) -__version__ = '0.50.0' +__version__ = '0.51.0'