summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adams <mark@markadams.me>2017-04-17 11:36:08 -0500
committerMark Adams <mark@markadams.me>2017-04-17 11:38:29 -0500
commit6b5c9c12932791669a7ee4eb4a595ee00825e52e (patch)
tree087a2d7320449acce55dd4611da44474be040fc7
parent7992d81ac827d2e1f1bf0b4fd62fafdbae412197 (diff)
downloadpyjwt-6b5c9c12932791669a7ee4eb4a595ee00825e52e.tar.gz
v1.5.0 releasenew-release
-rw-r--r--CHANGELOG.md12
-rw-r--r--jwt/__init__.py2
2 files changed, 8 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a84f2bf..d8395c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,15 +7,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[Unreleased][unreleased]
-------------------------------------------------------------------------
### Changed
+
+### Fixed
+
+[v1.5.0][1.5.0]
+-------------------------------------------------------------------------
+### Changed
- Add support for ECDSA public keys in RFC 4253 (OpenSSH) format [#244][244]
- Renamed commandline script `jwt` to `jwt-cli` to avoid issues with the script clobbering the `jwt` module in some circumstances.
- Better error messages when using an algorithm that requires the cryptography package, but it isn't available [#230][230]
- Tokens with future 'iat' values are no longer rejected [#190][190]
- Non-numeric 'iat' values now raise InvalidIssuedAtError instead of DecodeError
-
-### Fixed
-
[v1.4.2][1.4.2]
-------------------------------------------------------------------------
### Fixed
@@ -112,8 +115,7 @@ rarely used. Users affected by this should upgrade to 3.3+.
[1.4.0]: https://github.com/jpadilla/pyjwt/compare/1.3.0...1.4.0
[1.4.1]: https://github.com/jpadilla/pyjwt/compare/1.4.0...1.4.1
[1.4.2]: https://github.com/jpadilla/pyjwt/compare/1.4.1...1.4.2
-
-
+[1.5.0]: https://github.com/jpadilla/pyjwt/compare/1.4.2...1.5.0
[109]: https://github.com/jpadilla/pyjwt/pull/109
[110]: https://github.com/jpadilla/pyjwt/pull/110
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 64b2f97..398d854 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.4.2'
+__version__ = '1.5.0'
__author__ = 'José Padilla'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 José Padilla'