From 14f7b5468bf381735bbba5889ff3e0a55dbecf60 Mon Sep 17 00:00:00 2001 From: Alex DelVecchio Date: Wed, 10 Apr 2024 15:43:29 -0400 Subject: [PATCH] Prepare for version 0.59.0 release --- CHANGELOG.md | 4 ++++ README.md | 2 +- setup.py | 4 +++- zappa/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c46376c3..7e661da5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Zappa Changelog +## 0.59.0 + +See [release notes](https://github.com/zappa/Zappa/releases/tag/0.59.0) + ## 0.58.0 * Add Python 3.11 support (#1262) diff --git a/README.md b/README.md index e4127f606..de52ee815 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Zappa - Serverless Python -[![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) +[![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) [![Coverage](https://img.shields.io/coveralls/zappa/Zappa.svg)](https://coveralls.io/github/zappa/Zappa) [![PyPI](https://img.shields.io/pypi/v/Zappa.svg)](https://pypi.python.org/pypi/zappa) [![Slack](https://img.shields.io/badge/chat-slack-ff69b4.svg)](https://zappateam.slack.com/) diff --git a/setup.py b/setup.py index ec43577a6..5379cddac 100755 --- a/setup.py +++ b/setup.py @@ -30,9 +30,11 @@ description="Server-less Python Web Services for AWS Lambda and API Gateway", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/zappa/Zappa", + url="https://zappa.ws/zappa", author="Rich Jones", author_email="rich@openwatch.net", + maintainer="Alex DelVecchio", + maintainer_email="alex@zappa.ws", entry_points={ "console_scripts": [ "zappa=zappa.cli:handle", diff --git a/zappa/__init__.py b/zappa/__init__.py index c0c2676b8..0ad30b31d 100644 --- a/zappa/__init__.py +++ b/zappa/__init__.py @@ -30,4 +30,4 @@ def running_in_docker() -> bool: ) raise RuntimeError(err_msg) -__version__ = "0.58.0" +__version__ = "0.59.0"