Skip to content

Commit 8e4ef3c

Browse files
committed
Merge pull request jpadilla#164 from mark-adams/release-1.3
Preparing for 1.3 release
2 parents 151761d + c9226bd commit 8e4ef3c

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Change Log
44
All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7-
[Unreleased][unreleased]
7+
[v1.3][1.3.0]
88
-------------------------------------------------------------------------
99
### Fixed
1010
- ECDSA (ES256, ES384, ES512) signatures are now being properly serialized [#158][158]
11-
- RSA-PSS (PS256, PS384, PS512) signatures now use the proper salt length for PSS padding.
11+
- RSA-PSS (PS256, PS384, PS512) signatures now use the proper salt length for PSS padding. [#163][163]
1212

1313
### Added
1414
- 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+.
6464
- Fixed a security vulnerability by adding support for a whitelist of allowed `alg` values `jwt.decode(algorithms=[])`. [#110][110]
6565

6666

67-
[unreleased]: https://github.com/jpadilla/pyjwt/compare/1.1.0...HEAD
67+
[unreleased]: https://github.com/jpadilla/pyjwt/compare/1.3.0...HEAD
68+
[1.0.0]: https://github.com/jpadilla/pyjwt/compare/0.4.3...1.0.0
69+
[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
6870
[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
6971
[1.0.1]: https://github.com/jpadilla/pyjwt/compare/1.0.0...1.0.1
7072
[1.1.0]: https://github.com/jpadilla/pyjwt/compare/1.0.1...1.1.0
7173
[1.2.0]: https://github.com/jpadilla/pyjwt/compare/1.1.0...1.2.0
74+
[1.3.0]: https://github.com/jpadilla/pyjwt/compare/1.2.0...1.3.0
75+
7276

7377
[109]: https://github.com/jpadilla/pyjwt/pull/109
7478
[110]: https://github.com/jpadilla/pyjwt/pull/110
@@ -82,4 +86,5 @@ rarely used. Users affected by this should upgrade to 3.3+.
8286
[132]: https://github.com/jpadilla/pyjwt/pull/132
8387
[128]: https://github.com/jpadilla/pyjwt/pull/128
8488
[141]: https://github.com/jpadilla/pyjwt/pull/141
85-
[158: https://github.com/jpadilla/pyjwt/pull/158
89+
[158]: https://github.com/jpadilla/pyjwt/pull/158
90+
[163]: https://github.com/jpadilla/pyjwt/pull/163

jwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
__title__ = 'pyjwt'
13-
__version__ = '1.2.0'
13+
__version__ = '1.3.0'
1414
__author__ = 'José Padilla'
1515
__license__ = 'MIT'
1616
__copyright__ = 'Copyright 2015 José Padilla'

0 commit comments

Comments
 (0)