From 602ad8a625f09665bf78d64e21bb756fdfaa79e6 Mon Sep 17 00:00:00 2001 From: James Bradshaw Date: Sun, 17 Jan 2021 16:55:20 -0600 Subject: [PATCH] Prepare for new version release (#22) --- CHANGELOG.md | 5 ++++- flask_githubapp/version.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dffcf2e..9cecf1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] + ### Changed - `GITHUBAPP_SECRET` can now be set to `False` to skip verifying the signature of the webhook payload. @@ -29,5 +31,6 @@ The goal is to aid in debugging, as GitHub allows app owners to view hook respon - Initial release -[Unreleased]: https://github.com/bradshjg/flask-githubapp/compare/0.2.0...HEAD +[Unreleased]: https://github.com/bradshjg/flask-githubapp/compare/0.3.0...HEAD [0.2.0]: https://github.com/bradshjg/flask-githubapp/compare/0.1.0...0.2.0 +[0.3.0]: https://github.com/bradshjg/flask-githubapp/compare/0.2.0...0.3.0 diff --git a/flask_githubapp/version.py b/flask_githubapp/version.py index 7fd229a..0404d81 100644 --- a/flask_githubapp/version.py +++ b/flask_githubapp/version.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.3.0' diff --git a/setup.py b/setup.py index bf15c27..e25a2f8 100644 --- a/setup.py +++ b/setup.py @@ -32,9 +32,9 @@ 'License :: OSI Approved :: MIT License', 'Framework :: Flask', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Operating System :: OS Independent',