Skip to content

Commit 6223ba1

Browse files
authored
Bump up version to v2.2.0 (#697)
Co-authored-by: José Padilla <[email protected]>
1 parent 258d7ba commit 6223ba1

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,28 @@ This project adheres to `Semantic Versioning <https://semver.org/>`__.
1010
Changed
1111
~~~~~~~
1212

13-
- Remove arbitrary kwalgs. `#657 <https://github.com/jpadilla/pyjwt/pull/657>`__
13+
Fixed
14+
~~~~~
15+
16+
Added
17+
~~~~~
18+
19+
`v2.2.0 <https://github.com/jpadilla/pyjwt/compare/2.1.0...2.2.0>`__
20+
-----------------------------------------------------------------------
21+
22+
Changed
23+
~~~~~~~
24+
25+
- Remove arbitrary kwargs. `#657 <https://github.com/jpadilla/pyjwt/pull/657>`__
26+
- Use timezone package as Python 3.5+ is required. `#694 <https://github.com/jpadilla/pyjwt/pull/694>`__
1427

1528
Fixed
1629
~~~~~
1730
- Assume JWK without the "use" claim is valid for signing as per RFC7517 `#668 <https://github.com/jpadilla/pyjwt/pull/668>`__
18-
1931
- Prefer `headers["alg"]` to `algorithm` in `jwt.encode()`. `#673 <https://github.com/jpadilla/pyjwt/pull/673>`__
2032
- Fix aud validation to support {'aud': null} case. `#670 <https://github.com/jpadilla/pyjwt/pull/670>`__
2133
- Make `typ` optional in JWT to be compliant with RFC7519. `#644 <https://github.com/jpadilla/pyjwt/pull/644>`__
34+
- Remove upper bound on cryptography version. `#693 <https://github.com/jpadilla/pyjwt/pull/693>`__
2235

2336
Added
2437
~~~~~

jwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
)
2626
from .jwks_client import PyJWKClient
2727

28-
__version__ = "2.1.0"
28+
__version__ = "2.2.0"
2929

3030
__title__ = "PyJWT"
3131
__description__ = "JSON Web Token implementation in Python"

0 commit comments

Comments
 (0)