summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2018-03-18 09:37:23 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2018-03-18 09:37:23 -0400
commit285afade1d14eb810615c5bc751ea2c6a7a3314a (patch)
tree9b9b5dc95b451662bea9c800c5833fe4db933f96
parent02374f4203c7ee0e11fdd32c61cb067b63cd0cff (diff)
downloadpyjwt-1.6.1.tar.gz
Bump up version to v1.6.11.6.1
-rw-r--r--CHANGELOG.md11
-rw-r--r--jwt/__init__.py2
2 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8339f77..314b5cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,10 +10,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
-- Audience parameter throws `InvalidAudienceError` when application does not specify an audience, but the token does. [#336][336]
-
### Added
+[v1.6.1][1.6.1]
+-------------------------------------------------------------------------
+### Fixed
+
+- Audience parameter throws `InvalidAudienceError` when application does not specify an audience, but the token does. [#336][336]
+
[v1.6.0][1.6.0]
-------------------------------------------------------------------------
### Changed
@@ -183,6 +187,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
[1.5.2]: https://github.com/jpadilla/pyjwt/compare/1.5.1...1.5.2
[1.5.3]: https://github.com/jpadilla/pyjwt/compare/1.5.2...1.5.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
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -223,5 +228,5 @@ rarely used. Users affected by this should upgrade to 3.3+.
[306]: https://github.com/jpadilla/pyjwt/pull/306
[315]: https://github.com/jpadilla/pyjwt/pull/315
[316]: https://github.com/jpadilla/pyjwt/pull/316
-[7c1e61d]: https://github.com/jpadilla/pyjwt/commit/7c1e61dde27bafe16e7d1bb6e35199e778962742
[336]: https://github.com/jpadilla/pyjwt/pull/336
+[7c1e61d]: https://github.com/jpadilla/pyjwt/commit/7c1e61dde27bafe16e7d1bb6e35199e778962742
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 699e2e0..823128d 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.0'
+__version__ = '1.6.1'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 José Padilla'