Skip to content

Commit 00ad4fd

Browse files
authored
fix: requirement for docs (#547)
1 parent 9cd7619 commit 00ad4fd

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [unreleased]
1010

11+
## [0.26.1] - 2024-11-28
12+
13+
- Fixes dependency for docs build
14+
1115
## [0.26.0] - 2024-11-20
1216

1317
- Not supporting Python 3.7

dev-requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ fastapi==0.115.5
77
Flask==3.0.3
88
flask-cors==5.0.0
99
nest-asyncio==1.6.0
10+
pdoc3==0.11.0
1011
pylint==3.2.7
1112
pyright==1.1.389
1213
python-dotenv==1.0.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
setup(
8585
name="supertokens_python",
86-
version="0.26.0",
86+
version="0.26.1",
8787
author="SuperTokens",
8888
license="Apache 2.0",
8989
author_email="[email protected]",

supertokens_python/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from __future__ import annotations
1616

1717
SUPPORTED_CDI_VERSIONS = ["5.1"]
18-
VERSION = "0.26.0"
18+
VERSION = "0.26.1"
1919
TELEMETRY = "/telemetry"
2020
USER_COUNT = "/users/count"
2121
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)