From e5fcca27712c0ebdeb55d3c3cdad1c6e0f708ac3 Mon Sep 17 00:00:00 2001 From: Asher Foa Date: Fri, 4 Jun 2021 20:26:09 -0700 Subject: [PATCH] Prepare release 3.3.0 (#260) --- CHANGELOG.md | 18 ++++++++++++++++++ MANIFEST.in | 3 +++ README.rst | 7 +++++-- jose/__init__.py | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df6d9d42..d5a360a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog # +## 3.3.0 -- 2020-06-04 ## + +### News ### + +* Remove support for python 2.7 & 3.5 +* Add support for Python 3.9 +* Remove PyCrypto backend +* Fix deprecation warning from cryptography backend + +### Housekeeping ### + +* Switched from Travis CI to Github Actions +* Added iSort & Black +* Run CI Tests under Mac OS & Windows. +* Updated Syntax to use Python 3.6+ +* Upgrade to latest pytest, remove used dev requirements. + + ## 3.2.0 -- 2020-07-29 ## ### News ### diff --git a/MANIFEST.in b/MANIFEST.in index 8fb0e6e7..eaadccc8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,5 +3,8 @@ include LICENSE include requirements.txt include requirements-*.txt include tox.ini +include pytest.ini +include CHANGELOG.md +include VERSIONING.md graft docs graft tests diff --git a/README.rst b/README.rst index 46aadb76..cfdaa1e5 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ python-jose A JOSE implementation in Python -|Github Actions CI Status| |Coverage Status| |Docs| |style| +|pypi| |Github Actions CI Status| |Coverage Status| |Docs| |style| Docs are available on ReadTheDocs_. @@ -27,7 +27,7 @@ Installation Cryptographic Backends ---------------------- -As of 3.2.0, python-jose implements three different cryptographic backends. +As of 3.3.0, python-jose implements three different cryptographic backends. The backend must be selected as an extra when installing python-jose. If you do not select a backend, the native-python backend will be installed. @@ -84,6 +84,9 @@ Thanks This library was originally based heavily on the work of the folks over at PyJWT_. +.. |pypi| image:: https://img.shields.io/pypi/v/python-jose?style=flat-square + :target: https://pypi.org/project/python-jose/ + :alt: PyPI .. |Github Actions CI Status| image:: https://github.com/mpdavis/python-jose/workflows/main/badge.svg?branch=master :target: https://github.com/mpdavis/python-jose/actions?workflow=main :alt: Github Actions CI Status diff --git a/jose/__init__.py b/jose/__init__.py index dbcdbba8..054baa73 100644 --- a/jose/__init__.py +++ b/jose/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.2.0" +__version__ = "3.3.0" __author__ = "Michael Davis" __license__ = "MIT" __copyright__ = "Copyright 2016 Michael Davis"