diff --git a/CHANGELOG.md b/CHANGELOG.md index 7484cecb5..6c46376c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Zappa Changelog +## 0.58.0 + +* Add Python 3.11 support (#1262) +* support new ephemeral storage feature in zappa_settings.json (#1120) +* Update permissions (PR #1119) +* Outdated manylinux wheels download logic (#1249) +* cryptography>=35.0, plus pip>=20.3 - downloads wrong cryptography anywheel package (GLIBC_2.18 error) (#1063) +* fix response time improperly configured for micro-seconds. (#1265) +* fix unquote issue with querystring handling. (#1264) + ## 0.57.0 * Python 3.10 support (#1124, #1160) diff --git a/Makefile b/Makefile index 0d201b91e..d84eb89cc 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,9 @@ clean: coverage erase requirements: - pip install pipenv>2021.11.15 + pip install pip --upgrade + pip install "pipenv>2021.11.15" + pipenv lock pipenv sync --dev diff --git a/Pipfile b/Pipfile index e1a35d0e1..f8d05fbd9 100644 --- a/Pipfile +++ b/Pipfile @@ -14,7 +14,6 @@ Flask = "*" isort = "*" mock = "*" mypy = "*" -pipenv = ">2021.11.15" packaging = "*" pytest = "*" pytest-cov = "*" diff --git a/zappa/__init__.py b/zappa/__init__.py index 402cdaab5..ced860fba 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -30,4 +30,4 @@ def running_in_docker() -> bool: ) raise RuntimeError(err_msg) -__version__ = "0.57.0" +__version__ = "0.58.0"