Skip to content

Commit

Permalink
fix: dependency downgrade for phonenumbers and twilio
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Oct 16, 2024
1 parent 32983d8 commit e826b12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.24.4] - 2024-10-16

- Fixes dependency downgrade for `phonenumbers` and `twilio`

## [0.24.3] - 2024-09-24

- Adds support for form field related improvements by making fields accept any type of values
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

setup(
name="supertokens_python",
version="0.24.3",
version="0.24.4",
author="SuperTokens",
license="Apache 2.0",
author_email="team@supertokens.com",
Expand Down Expand Up @@ -121,8 +121,8 @@
"asgiref>=3.4.1,<4",
"typing_extensions>=4.1.1,<5.0.0",
"Deprecated==1.2.13",
"phonenumbers==8.12.48",
"twilio==7.9.1",
"phonenumbers>=8.12.48",
"twilio>=7.9.1",
"aiosmtplib>=1.1.6,<4.0.0",
"pkce==1.0.3",
],
Expand Down
2 changes: 1 addition & 1 deletion supertokens_python/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from __future__ import annotations

SUPPORTED_CDI_VERSIONS = ["3.0"]
VERSION = "0.24.3"
VERSION = "0.24.4"
TELEMETRY = "/telemetry"
USER_COUNT = "/users/count"
USER_DELETE = "/user/remove"
Expand Down

0 comments on commit e826b12

Please sign in to comment.