diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e512987..7484cecb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Zappa Changelog +## 0.57.0 + +* Python 3.10 support (#1124, #1160) +* Remove patron link from README (#1200) +* migrate test framework from nose to pytest (#1146) +* Upgrading Django to 4.2 crashes the zappa based deployment with Error 500 (#1230) + ## 0.56.1 * Fix FileNotFoundError in running_in_docker (#1201) diff --git a/zappa/__init__.py b/zappa/__init__.py index 2a323de4c..7918f71e8 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -30,4 +30,4 @@ def running_in_docker() -> bool: ) raise RuntimeError(err_msg) -__version__ = "0.56.1" +__version__ = "0.57.0"