summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2015-05-22 11:50:44 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2015-05-22 11:50:44 -0400
commit8e4ef3cb47af5f37826b3c6f1a12c5000513fa14 (patch)
tree1c81dd3aaea66ca521de9b3f21a3c2105b6ec43a
parent151761decca165a6294785a5694f5fb3ed286e7e (diff)
parentc9226bd4b427ea4a7391ee823702e219e19ceeee (diff)
downloadpyjwt-8e4ef3cb47af5f37826b3c6f1a12c5000513fa14.tar.gz
Merge pull request #164 from mark-adams/release-1.31.3.0
Preparing for 1.3 release
-rw-r--r--CHANGELOG.md13
-rw-r--r--jwt/__init__.py2
2 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 75b095e..8330390 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,11 +4,11 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
-[Unreleased][unreleased]
+[v1.3][1.3.0]
-------------------------------------------------------------------------
### Fixed
- ECDSA (ES256, ES384, ES512) signatures are now being properly serialized [#158][158]
-- RSA-PSS (PS256, PS384, PS512) signatures now use the proper salt length for PSS padding.
+- RSA-PSS (PS256, PS384, PS512) signatures now use the proper salt length for PSS padding. [#163][163]
### Added
- Added a new `jwt.get_unverified_header()` to parse and return the header portion of a token prior to signature verification.
@@ -64,11 +64,15 @@ rarely used. Users affected by this should upgrade to 3.3+.
- Fixed a security vulnerability by adding support for a whitelist of allowed `alg` values `jwt.decode(algorithms=[])`. [#110][110]
-[unreleased]: https://github.com/jpadilla/pyjwt/compare/1.1.0...HEAD
+[unreleased]: https://github.com/jpadilla/pyjwt/compare/1.3.0...HEAD
+[1.0.0]: https://github.com/jpadilla/pyjwt/compare/0.4.3...1.0.0
+[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
[1.1.0]: https://github.com/jpadilla/pyjwt/compare/1.0.1...1.1.0
[1.2.0]: https://github.com/jpadilla/pyjwt/compare/1.1.0...1.2.0
+[1.3.0]: https://github.com/jpadilla/pyjwt/compare/1.2.0...1.3.0
+
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -82,4 +86,5 @@ rarely used. Users affected by this should upgrade to 3.3+.
[132]: https://github.com/jpadilla/pyjwt/pull/132
[128]: https://github.com/jpadilla/pyjwt/pull/128
[141]: https://github.com/jpadilla/pyjwt/pull/141
-[158: https://github.com/jpadilla/pyjwt/pull/158
+[158]: https://github.com/jpadilla/pyjwt/pull/158
+[163]: https://github.com/jpadilla/pyjwt/pull/163
diff --git a/jwt/__init__.py b/jwt/__init__.py
index ab77a10..63b4a53 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.2.0'
+__version__ = '1.3.0'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 José Padilla'