summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2017-06-22 12:31:04 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2017-06-22 12:31:04 -0400
commit74399b1856573d8545b8dbbcac0db29a5656979d (patch)
tree528255f13b6e8f05cf948b11c36dee9d5c6f0e7c
parent7c1e61dde27bafe16e7d1bb6e35199e778962742 (diff)
downloadpyjwt-74399b1856573d8545b8dbbcac0db29a5656979d.tar.gz
Bump up for release1.5.2
-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 ce99516..2049b29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
### Added
+[v1.5.2][1.5.2]
+-------------------------------------------------------------------------
+### Fixed
+
+- Ensure correct arguments order in decode super call [7c1e61d][7c1e61d]
+
[v1.5.1][1.5.1]
-------------------------------------------------------------------------
### Changed
@@ -144,6 +150,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
[1.4.2]: https://github.com/jpadilla/pyjwt/compare/1.4.1...1.4.2
[1.5.0]: https://github.com/jpadilla/pyjwt/compare/1.4.2...1.5.0
[1.5.1]: https://github.com/jpadilla/pyjwt/compare/1.5.0...1.5.1
+[1.5.2]: https://github.com/jpadilla/pyjwt/compare/1.5.1...1.5.2
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -178,3 +185,4 @@ rarely used. Users affected by this should upgrade to 3.3+.
[270]: https://github.com/jpadilla/pyjwt/pull/270
[271]: https://github.com/jpadilla/pyjwt/pull/271
[277]: https://github.com/jpadilla/pyjwt/pull/277
+[7c1e61d]: https://github.com/jpadilla/pyjwt/commit/7c1e61dde27bafe16e7d1bb6e35199e778962742
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 0e78d45..4a7628d 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.5.1'
+__version__ = '1.5.2'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 José Padilla'