summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adams <madams@atlassian.com>2018-05-23 21:32:03 -0500
committerMark Adams <madams@atlassian.com>2018-05-23 21:32:03 -0500
commite87b7e6cc7e6f54f0726b330845c695fe7594a4d (patch)
tree001e8a651e0bde18dee3943e3fcd6629bf6165f7
parente945242683b8308a5d4cee0a217720d52fea975a (diff)
downloadpyjwt-fix-351.tar.gz
Update CHANGELOG and bump version to 1.6.4fix-351
-rw-r--r--CHANGELOG.md8
-rw-r--r--jwt/__init__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 440f8ce..747267b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
+[v1.6.4][1.6.4]
+-------------------------------------------------------------------------
+### Fixed
+
+- Reverse an unintentional breaking API change to .decode() [#352][352]
+
[v1.6.3][1.6.3]
-------------------------------------------------------------------------
### Changed
@@ -205,6 +211,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
[1.6.0]: https://github.com/jpadilla/pyjwt/compare/1.5.3...1.6.0
[1.6.1]: https://github.com/jpadilla/pyjwt/compare/1.6.0...1.6.1
[1.6.3]: https://github.com/jpadilla/pyjwt/compare/1.6.1...1.6.3
+[1.6.4]: https://github.com/jpadilla/pyjwt/compare/1.6.3...1.6.4
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -250,5 +257,6 @@ rarely used. Users affected by this should upgrade to 3.3+.
[340]: https://github.com/jpadilla/pyjwt/pull/340
[344]: https://github.com/jpadilla/pyjwt/pull/344
[350]: https://github.com/jpadilla/pyjwt/pull/350
+[352]: https://github.com/jpadilla/pyjwt/pull/352
[7c1e61d]: https://github.com/jpadilla/pyjwt/commit/7c1e61dde27bafe16e7d1bb6e35199e778962742
[7ca41e]: https://github.com/jpadilla/pyjwt/commit/7ca41e53b3d7d9f5cd31bdd8a2b832d192006239
diff --git a/jwt/__init__.py b/jwt/__init__.py
index fa10a15..e557dcf 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -10,7 +10,7 @@ http://self-issued.info/docs/draft-jones-json-web-token-01.html
__title__ = 'pyjwt'
-__version__ = '1.6.3'
+__version__ = '1.6.4'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2018 José Padilla'