diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ffdc661..0f149e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.26.1] - 2024-11-28 + +- Fixes dependency for docs build + ## [0.26.0] - 2024-11-20 - Not supporting Python 3.7 diff --git a/dev-requirements.txt b/dev-requirements.txt index a285b8ff..83a80a4a 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -7,6 +7,7 @@ fastapi==0.115.5 Flask==3.0.3 flask-cors==5.0.0 nest-asyncio==1.6.0 +pdoc3==0.11.0 pylint==3.2.7 pyright==1.1.389 python-dotenv==1.0.1 diff --git a/setup.py b/setup.py index 6c833717..80baf588 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ setup( name="supertokens_python", - version="0.26.0", + version="0.26.1", author="SuperTokens", license="Apache 2.0", author_email="team@supertokens.com", diff --git a/supertokens_python/constants.py b/supertokens_python/constants.py index 07d62347..77662429 100644 --- a/supertokens_python/constants.py +++ b/supertokens_python/constants.py @@ -15,7 +15,7 @@ from __future__ import annotations SUPPORTED_CDI_VERSIONS = ["5.1"] -VERSION = "0.26.0" +VERSION = "0.26.1" TELEMETRY = "/telemetry" USER_COUNT = "/users/count" USER_DELETE = "/user/remove"