Skip to content

Commit 8d68b54

Browse files
Prepare CHANGELOG/VERSION for 0.58.0 release (#1271)
* ✏️ update version 0.57.0 -> 0.58.0 ✏️ update CHANGELOG.md with issues addressed in 0.58.0 * 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error. * 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip/pipenv * 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip in Makefile * 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Set pipenv<2023.8.19 * 📝 add python 3.11 support issue to CHANGELOG * 🔥 remove unnecessary update pip/pipenv section * 🔥 remove `pipenv` from Pipfile (as recommended by pipenv dev team (pypa/pipenv#5927) --------- Co-authored-by: shane <[email protected]>
1 parent f0b51ac commit 8d68b54

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Zappa Changelog
22

3+
## 0.58.0
4+
5+
* Add Python 3.11 support (#1262)
6+
* support new ephemeral storage feature in zappa_settings.json (#1120)
7+
* Update permissions (PR #1119)
8+
* Outdated manylinux wheels download logic (#1249)
9+
* cryptography>=35.0, plus pip>=20.3 - downloads wrong cryptography anywheel package (GLIBC_2.18 error) (#1063)
10+
* fix response time improperly configured for micro-seconds. (#1265)
11+
* fix unquote issue with querystring handling. (#1264)
12+
313
## 0.57.0
414

515
* Python 3.10 support (#1124, #1160)

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ clean:
2727
coverage erase
2828

2929
requirements:
30-
pip install pipenv>2021.11.15
30+
pip install pip --upgrade
31+
pip install "pipenv>2021.11.15"
32+
3133
pipenv lock
3234
pipenv sync --dev
3335

Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Flask = "*"
1414
isort = "*"
1515
mock = "*"
1616
mypy = "*"
17-
pipenv = ">2021.11.15"
1817
packaging = "*"
1918
pytest = "*"
2019
pytest-cov = "*"

zappa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ def running_in_docker() -> bool:
3030
)
3131
raise RuntimeError(err_msg)
3232

33-
__version__ = "0.57.0"
33+
__version__ = "0.58.0"

0 commit comments

Comments
 (0)