Skip to content

Commit a38058b

Browse files
authored
Prepare for version 0.59.0 release (#1328)
1 parent 0de680c commit a38058b

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

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

3+
## 0.59.0
4+
5+
See [release notes](https://github.com/zappa/Zappa/releases/tag/0.59.0)
6+
37
## 0.58.0
48

59
* Add Python 3.11 support (#1262)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Zappa - Serverless Python
66

7-
[![CI](https://github.com/zappa/Zappa/actions/workflows/ci.yaml/badge.svg?branch=master&event=push)](https://github.com/zappa/Zappa/actions/workflows/ci.yaml)
7+
[![CI](https://github.com/zappa/Zappa/actions/workflows/ci.yml/badge.svg?branch=master&event=push)](https://github.com/zappa/Zappa/actions/workflows/ci.yml)
88
[![Coverage](https://img.shields.io/coveralls/zappa/Zappa.svg)](https://coveralls.io/github/zappa/Zappa)
99
[![PyPI](https://img.shields.io/pypi/v/Zappa.svg)](https://pypi.python.org/pypi/zappa)
1010
[![Slack](https://img.shields.io/badge/chat-slack-ff69b4.svg)](https://zappateam.slack.com/)

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@
3030
description="Server-less Python Web Services for AWS Lambda and API Gateway",
3131
long_description=long_description,
3232
long_description_content_type="text/markdown",
33-
url="https://github.com/zappa/Zappa",
33+
url="https://zappa.ws/zappa",
3434
author="Rich Jones",
3535
author_email="[email protected]",
36+
maintainer="Alex DelVecchio",
37+
maintainer_email="[email protected]",
3638
entry_points={
3739
"console_scripts": [
3840
"zappa=zappa.cli:handle",

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.58.0"
33+
__version__ = "0.59.0"

0 commit comments

Comments
 (0)