From 17b6910cdcd95a6870bd467c97860796bb79d464 Mon Sep 17 00:00:00 2001 From: blag Date: Wed, 29 Jul 2020 17:11:14 -0700 Subject: [PATCH] Bump version to 3.2.0 and update changelog --- CHANGELOG.md | 23 +++++++++++++++++++++-- jose/__init__.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71aa19af..df6d9d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,27 @@ # Changelog # -## Development ## +## 3.2.0 -- 2020-07-29 ## + +### News ### + +* This will be the last release supporting Python 2.7, 3.5, and the PyCrypto + backend. + +### Bug fixes and Improvements ### + +* Use hmac.compare_digest instead of our own constant_time_string_compare #163 +* Fix `to_dict` output, which should always be JSON encodeable. #139 and #165 + (fixes #127 and #137) +* Require setuptools >= 39.2.0 #167 (fixes #161) +* Emit a warning when verifying with a private key #168 (fixes #53 and #142) +* Avoid loading python-ecdsa when using the cryptography backend, and pinned + python-ecdsa dependency to <0.15 #178 + +### Housekeeping ### + +* Fixed some typos #160, #162, and #164 + -* Fix `to_dict` output, which should always be JSON encodeable. #139 (fixes #127 and #137) ## 3.1.0 -- 2019-12-10 ## diff --git a/jose/__init__.py b/jose/__init__.py index ddf2dcbf..c4dc055b 100644 --- a/jose/__init__.py +++ b/jose/__init__.py @@ -1,5 +1,5 @@ -__version__ = "3.1.0" +__version__ = "3.2.0" __author__ = 'Michael Davis' __license__ = 'MIT' __copyright__ = 'Copyright 2016 Michael Davis'