Skip to content

Commit 12b3a29

Browse files
Release v0.4.5
1 parent d433544 commit 12b3a29

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

authl/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
""" version """
2-
__version__ = "0.4.4"
2+
__version__ = "0.4.5"

authl/tokens.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ def put(self, value):
129129
def get(self, key, to_type=tuple):
130130
try:
131131
return to_type(self._serializer.loads(key))
132-
except itsdangerous.BadData:
133-
raise KeyError("Invalid token")
132+
except itsdangerous.BadData as err:
133+
raise KeyError("Invalid token") from err
134134

135135
def remove(self, key):
136136
pass

poetry.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Authl"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
description = "Framework-agnostic authentication wrapper"
55
authors = ["fluffy <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)