From c553205c7a292e96646a51a0f853573504df2cb2 Mon Sep 17 00:00:00 2001 From: monkut Date: Fri, 19 May 2023 11:18:43 +0900 Subject: [PATCH] :pencil: CHANGELOG.md update for 0.57.0 (#1246) :pencil: Update version number for release 0.56.1 -> 0.57.0 :pencil: CHANGELOG update for next release Co-authored-by: shane --- CHANGELOG.md | 7 +++++++ zappa/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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"