Skip to content

Commit b35d522

Browse files
committed
Bump version to 1.4.2 and update CHANGELOG
1 parent 899fdaf commit b35d522

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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+
[v1.4.2][1.4.2]
8+
-------------------------------------------------------------------------
9+
### Fixed
10+
- A PEM-formatted key encoded as bytes could cause a `TypeError` to be raised [#213][213]
11+
12+
[v1.4.1][1.4.1]
13+
-------------------------------------------------------------------------
14+
### Fixed
15+
- Newer versions of Pytest could not detect warnings properly [#182][182]
16+
- Non-string 'kid' value now raises `InvalidTokenError` [#174][174]
17+
- `jwt.decode(None)` now gracefully fails with `InvalidTokenError` [#183][183]
18+
719
[v1.4][1.4.0]
820
-------------------------------------------------------------------------
921
### Fixed
@@ -86,6 +98,9 @@ rarely used. Users affected by this should upgrade to 3.3+.
8698
[1.2.0]: https://github.com/jpadilla/pyjwt/compare/1.1.0...1.2.0
8799
[1.3.0]: https://github.com/jpadilla/pyjwt/compare/1.2.0...1.3.0
88100
[1.4.0]: https://github.com/jpadilla/pyjwt/compare/1.3.0...1.4.0
101+
[1.4.1]: https://github.com/jpadilla/pyjwt/compare/1.4.0...1.4.1
102+
[1.4.2]: https://github.com/jpadilla/pyjwt/compare/1.4.1...1.4.2
103+
89104

90105

91106
[109]: https://github.com/jpadilla/pyjwt/pull/109
@@ -102,3 +117,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
102117
[141]: https://github.com/jpadilla/pyjwt/pull/141
103118
[158]: https://github.com/jpadilla/pyjwt/pull/158
104119
[163]: https://github.com/jpadilla/pyjwt/pull/163
120+
[174]: https://github.com/jpadilla/pyjwt/pull/174
121+
[182]: https://github.com/jpadilla/pyjwt/pull/182
122+
[183]: https://github.com/jpadilla/pyjwt/pull/183
123+
[213]: https://github.com/jpadilla/pyjwt/pull/214

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.4.1'
13+
__version__ = '1.4.2'
1414
__author__ = 'José Padilla'
1515
__license__ = 'MIT'
1616
__copyright__ = 'Copyright 2015 José Padilla'

0 commit comments

Comments
 (0)