File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 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 ###
Original file line number Diff line number Diff line change @@ -3,5 +3,8 @@ include LICENSE
33include requirements.txt
44include requirements-*.txt
55include tox.ini
6+ include pytest.ini
7+ include CHANGELOG.md
8+ include VERSIONING.md
69graft docs
710graft tests
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ python-jose
33
44A 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
88Docs are available on ReadTheDocs _.
99
@@ -27,7 +27,7 @@ Installation
2727Cryptographic 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.
3131The backend must be selected as an extra when installing python-jose.
3232If you do not select a backend, the native-python backend will be installed.
3333
8484
8585This 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
Original file line number Diff line number Diff line change 1- __version__ = "3.2 .0"
1+ __version__ = "3.3 .0"
22__author__ = "Michael Davis"
33__license__ = "MIT"
44__copyright__ = "Copyright 2016 Michael Davis"
You can’t perform that action at this time.
0 commit comments