Skip to content

Commit 7c416f9

Browse files
committed
updates version
1 parent f18087e commit 7c416f9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [unreleased]
88

9+
## [0.10.1] - 2022-07-11
10+
911
### Documentation:
1012
- Added `pdoc` template files to project inside `docs-templates` directory
1113
- Updated `build-docs` in Makefile to use `docs-templates` as the template directory while generating docs using `pdoc`
1214
- Updated `html.mako` template to have a single `h1` tag
1315

16+
### Changes
17+
- Relax version requirements for `httpx`, `cryptography`, and `asgiref` to fix https://github.com/supertokens/supertokens-python/issues/207
18+
1419
## [0.10.0] - 2022-07-04
1520

1621
- Update tests to cover `resend_code` feature in `passwordless` and `thirdpartypasswordless` recipe.
@@ -22,7 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2227
### Bug fix:
2328

2429
- Clears cookies when `revoke_session` is called using the session container, even if the session did not exist from before: https://github.com/supertokens/supertokens-node/issues/343
25-
- Relax version requirements for `httpx`, `cryptography`, and `asgiref` to fix https://github.com/supertokens/supertokens-python/issues/207
2630

2731
### Breaking changes:
2832
- Change request arg type in session recipe functions from Any to BaseRequest.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="supertokens_python",
73-
version="0.10.0",
73+
version="0.10.1",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",

supertokens_python/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414
SUPPORTED_CDI_VERSIONS = ["2.9", "2.10", "2.11", "2.12", "2.13", "2.14"]
15-
VERSION = "0.10.0"
15+
VERSION = "0.10.1"
1616
TELEMETRY = "/telemetry"
1717
USER_COUNT = "/users/count"
1818
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)