diff --git a/CHANGELOG.md b/CHANGELOG.md index b2a949025..7abf91d5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Zappa Changelog +## 0.56.0 +* Not recognizing virtaulenv created with pyenv (#1132) +* Remove six from zappa dependencies (#1164) +* Handle optional space in x-forwarded-for header (#1127) +* [Migrated] #2077 Fix url decoding for query string (#879) +* [Migrated] [async] Check if args/kwargs are JSON Serializable while running locally (#704) +* [Migrated] Add on Docs: event_source from S3 with key_filters (#446) +* [Migrated] Logs are missing query strings (#410) +* [Migrated] Update BINARY_SUPPORT to use Content-Encoding to identify if data is binary (#908) +* Remove obsolete check for Django version < 1.7 (#1158) +* [Migrated] s3 zip includes files that should be matched by the exclude setting (#422) +* Add exclude_glob documentation (#1052) +* Unable to schedule SQS Batch Size of greater than 10 (#1117) +* [Migrated] s3 zip includes files that should be matched by the exclude setting (#422) +* Allow any Python version if using Docker image for Lambda (#1140) +* Incorrect hosted zone match (#1190) +* Issue while trying to install or download zappa without binary file (#1199) + ## 0.55.0 * Fix "cd workflow fired event outside of the create tags event" (#1152) * Remove 'futures' package requirement (#826,#808) diff --git a/MANIFEST.in b/MANIFEST.in index 925bf6b06..f420fbaf6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include README.md LICENSE requirements.txt test_requirements.txt requirements.in test_requirements.in +include README.md LICENSE Pipfile recursive-include zappa *.py diff --git a/zappa/__init__.py b/zappa/__init__.py index 6aa5f3f8b..9391d49c3 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -33,4 +33,4 @@ def running_in_docker() -> bool: raise RuntimeError(err_msg) -__version__ = "0.55.0" +__version__ = "0.56.0"