diff options
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | jwt/__init__.py | 2 |
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' |