diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dcbf6532..883f2b3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Zappa Changelog +## 0.47.0 +* Support for SQS events +* Added test to enforce running of doctoc +* Add support for running django as a WSGI app (for NewRelic and others) +* Updates AWS regions for lambda and API Gateway +* Fix support for gcloud and other packages with slim_handler +* Add --disable-keep-open to zappa tail +* Dependency updates +* Fix pyenv invocation +* Add custom base_path stripping support +* Multiple documentation fixes and improvements +* first iteration of a documented deploy policy + +## 0.46.2 +* hotfix for creating virtual environments + ## 0.46.1 * Hotfix for pipenv support (pip >10.0.1) * Adds AWS GovCloud support! diff --git a/zappa/__init__.py b/zappa/__init__.py index 13bcf0a7b..44a4eb09c 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -11,4 +11,4 @@ 'Zappa (and AWS Lambda) support the following versions of Python: {}'.format(formatted_supported_versions) raise RuntimeError(err_msg) -__version__ = '0.46.2' +__version__ = '0.47.0'