We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a206592 commit 5d8ac4fCopy full SHA for 5d8ac4f
3 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# api-session Changelog
2
3
+## 1.5.1 (2025/06/18)
4
+
5
+* Add strict type hints
6
7
## 1.5.0 (2025/04/18)
8
9
* Drop support for Python 3.8
api_session/__init__.py
@@ -5,7 +5,7 @@
from urllib.parse import quote as urlquote
from urllib3 import Timeout, Retry
-__version__ = "1.5.0"
+__version__ = "1.5.1"
__all__ = (
10
"__version__",
11
"JSONDict",
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "api-session"
-version = "1.5.0"
+version = "1.5.1"
description = "requests.Session to work with JSON APIs"
authors = ["Baptiste Fontaine <baptiste@bixoto.com>"]
license = "MIT"
0 commit comments