Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Auto-detection of JWE key management algorithm based on key type (RSA→RSA-OAEP, EC→ECDH-ES, symmetric→A*-KW)
- `exp` and `nbf` claims validation moved from JOSE module to `Jam` instances
- `include_headers` parameter added to both sync and async `jwt_decode()`
- Update TestClients.

### Deprecated
- `jam.Jam.jwt_make_payload`: The JWT specification has been introduced, so signing is now done via JWS
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jamlib"
version = "3.2.0rc2"
version = "3.2.0rc3.dev0"
description = "Simple and universal library for authorization."
authors = [
{name = "Makridenko Adrian",email = "adrianmakridenko@duck.com"},
Expand Down
2 changes: 1 addition & 1 deletion src/jam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
from jam.instance import Jam


__version__ = "3.2.0rc2"
__version__ = "3.2.0rc3.dev0"
__all__ = ["Jam", "BaseJam"]
Loading
Loading