Skip to content

Commit

Permalink
Prepare release 3.3.0 (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
asherf committed Jun 5, 2021
1 parent 47edfc5 commit e5fcca2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 ###
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 5 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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_.

Expand All @@ -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.

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.2.0"
__version__ = "3.3.0"
__author__ = "Michael Davis"
__license__ = "MIT"
__copyright__ = "Copyright 2016 Michael Davis"
Expand Down

0 comments on commit e5fcca2

Please sign in to comment.