File tree 4 files changed +27
-3
lines changed
4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog #
2
2
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
+
3
21
## 3.2.0 -- 2020-07-29 ##
4
22
5
23
### News ###
Original file line number Diff line number Diff line change @@ -3,5 +3,8 @@ include LICENSE
3
3
include requirements.txt
4
4
include requirements-*.txt
5
5
include tox.ini
6
+ include pytest.ini
7
+ include CHANGELOG.md
8
+ include VERSIONING.md
6
9
graft docs
7
10
graft tests
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ python-jose
3
3
4
4
A JOSE implementation in Python
5
5
6
- |Github Actions CI Status | |Coverage Status | |Docs | |style |
6
+ |pypi | | Github Actions CI Status | |Coverage Status | |Docs | |style |
7
7
8
8
Docs are available on ReadTheDocs _.
9
9
@@ -27,7 +27,7 @@ Installation
27
27
Cryptographic Backends
28
28
----------------------
29
29
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.
31
31
The backend must be selected as an extra when installing python-jose.
32
32
If you do not select a backend, the native-python backend will be installed.
33
33
84
84
85
85
This library was originally based heavily on the work of the folks over at PyJWT _.
86
86
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
87
90
.. |Github Actions CI Status | image :: https://github.com/mpdavis/python-jose/workflows/main/badge.svg?branch=master
88
91
:target: https://github.com/mpdavis/python-jose/actions?workflow=main
89
92
: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"
2
2
__author__ = "Michael Davis"
3
3
__license__ = "MIT"
4
4
__copyright__ = "Copyright 2016 Michael Davis"
You can’t perform that action at this time.
0 commit comments