Skip to content

Commit 697344d

Browse files
committed
bump up version
1 parent e4d0aec commit 697344d

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@ Changelog
44
All notable changes to this project will be documented in this file.
55
This project adheres to `Semantic Versioning <https://semver.org/>`__.
66

7-
`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.10.1...HEAD>`__
7+
`Unreleased <https://github.com/jpadilla/pyjwt/compare/2.11.0...HEAD>`__
88
------------------------------------------------------------------------
99

10+
Fixed
11+
~~~~~
12+
1013
Added
1114
~~~~~
1215

13-
- Add minimum key length validation for HMAC and RSA keys (CWE-326).
14-
Warns by default via ``InsecureKeyLengthWarning`` when keys are below
15-
minimum recommended lengths per RFC 7518 Section 3.2 (HMAC) and
16-
NIST SP 800-131A (RSA). Pass ``enforce_minimum_key_length=True`` in
17-
options to ``PyJWT`` or ``PyJWS`` to raise ``InvalidKeyError`` instead.
18-
- Refactor ``PyJWT`` to own an internal ``PyJWS`` instance instead of
19-
calling global ``api_jws`` functions.
16+
`v2.11.0 <https://github.com/jpadilla/pyjwt/compare/2.10.1...2.11.0>`__
17+
-----------------------------------------------------------------------
2018

2119
Fixed
2220
~~~~~
@@ -46,6 +44,13 @@ Added
4644
- Docs: Refactored docs with ``autodoc``; added ``PyJWS`` and ``jwt.algorithms`` docs by @pachewise in `#1045 <https://github.com/jpadilla/pyjwt/pull/1045>`__
4745
- Docs: Documentation improvements for "sub" and "jti" claims by @cleder in `#1088 <https://github.com/jpadilla/pyjwt/pull/1088>`__
4846
- Development: Add pyupgrade as a pre-commit hook by @kurtmckee in `#1109 <https://github.com/jpadilla/pyjwt/pull/1109>`__
47+
- Add minimum key length validation for HMAC and RSA keys (CWE-326).
48+
Warns by default via ``InsecureKeyLengthWarning`` when keys are below
49+
minimum recommended lengths per RFC 7518 Section 3.2 (HMAC) and
50+
NIST SP 800-131A (RSA). Pass ``enforce_minimum_key_length=True`` in
51+
options to ``PyJWT`` or ``PyJWS`` to raise ``InvalidKeyError`` instead.
52+
- Refactor ``PyJWT`` to own an internal ``PyJWS`` instance instead of
53+
calling global ``api_jws`` functions.
4954

5055
`v2.10.1 <https://github.com/jpadilla/pyjwt/compare/2.10.0...2.10.1>`__
5156
-----------------------------------------------------------------------

jwt/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .jwks_client import PyJWKClient
2929
from .warnings import InsecureKeyLengthWarning
3030

31-
__version__ = "2.10.1"
31+
__version__ = "2.11.0"
3232

3333
__title__ = "PyJWT"
3434
__description__ = "JSON Web Token implementation in Python"
@@ -40,7 +40,7 @@
4040
__email__ = "hello@jpadilla.com"
4141

4242
__license__ = "MIT"
43-
__copyright__ = "Copyright 2015-2022 José Padilla"
43+
__copyright__ = "Copyright 2015-2026 José Padilla"
4444

4545

4646
__all__ = [

0 commit comments

Comments
 (0)