Skip to content

Commit e5fcca2

Browse files
authored
Prepare release 3.3.0 (#260)
1 parent 47edfc5 commit e5fcca2

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog #
22

3+
## 3.3.0 -- 2020-06-04 ##
4+
5+
### News ###
6+
7+
* Remove support for python 2.7 & 3.5
8+
* Add support for Python 3.9
9+
* Remove PyCrypto backend
10+
* Fix deprecation warning from cryptography backend
11+
12+
### Housekeeping ###
13+
14+
* Switched from Travis CI to Github Actions
15+
* Added iSort & Black
16+
* Run CI Tests under Mac OS & Windows.
17+
* Updated Syntax to use Python 3.6+
18+
* Upgrade to latest pytest, remove used dev requirements.
19+
20+
321
## 3.2.0 -- 2020-07-29 ##
422

523
### News ###

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ include LICENSE
33
include requirements.txt
44
include requirements-*.txt
55
include tox.ini
6+
include pytest.ini
7+
include CHANGELOG.md
8+
include VERSIONING.md
69
graft docs
710
graft tests

README.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ python-jose
33

44
A JOSE implementation in Python
55

6-
|Github Actions CI Status| |Coverage Status| |Docs| |style|
6+
|pypi| |Github Actions CI Status| |Coverage Status| |Docs| |style|
77

88
Docs are available on ReadTheDocs_.
99

@@ -27,7 +27,7 @@ Installation
2727
Cryptographic Backends
2828
----------------------
2929

30-
As of 3.2.0, python-jose implements three different cryptographic backends.
30+
As of 3.3.0, python-jose implements three different cryptographic backends.
3131
The backend must be selected as an extra when installing python-jose.
3232
If you do not select a backend, the native-python backend will be installed.
3333

@@ -84,6 +84,9 @@ Thanks
8484

8585
This library was originally based heavily on the work of the folks over at PyJWT_.
8686

87+
.. |pypi| image:: https://img.shields.io/pypi/v/python-jose?style=flat-square
88+
:target: https://pypi.org/project/python-jose/
89+
:alt: PyPI
8790
.. |Github Actions CI Status| image:: https://github.com/mpdavis/python-jose/workflows/main/badge.svg?branch=master
8891
:target: https://github.com/mpdavis/python-jose/actions?workflow=main
8992
:alt: Github Actions CI Status

jose/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.2.0"
1+
__version__ = "3.3.0"
22
__author__ = "Michael Davis"
33
__license__ = "MIT"
44
__copyright__ = "Copyright 2016 Michael Davis"

0 commit comments

Comments
 (0)