Skip to content

Commit

Permalink
Prepare CHANGELOG/VERSION for 0.58.0 release (#1271)
Browse files Browse the repository at this point in the history
* ✏️ 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 <shane.cousins@kiconiaworks.com>
  • Loading branch information
monkut and storkwrangler authored Sep 15, 2023
1 parent f0b51ac commit 8d68b54
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Flask = "*"
isort = "*"
mock = "*"
mypy = "*"
pipenv = ">2021.11.15"
packaging = "*"
pytest = "*"
pytest-cov = "*"
Expand Down
2 changes: 1 addition & 1 deletion zappa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ def running_in_docker() -> bool:
)
raise RuntimeError(err_msg)

__version__ = "0.57.0"
__version__ = "0.58.0"

0 comments on commit 8d68b54

Please sign in to comment.