Skip to content

Commit 1776a53

Browse files
committed
versions updated
1 parent e8a65bf commit 1776a53

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## unreleased
99

10+
## [0.12.2] - 2023-02-27
11+
- Email passowrd login for dashboard recipe
12+
1013
## [0.12.1] - 2023-02-06
1114

1215
- Email template updates

coreDriverInterfaceSupported.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
2-
"_comment": "contains a list of core-driver interfaces branch names that this core supports",
3-
"versions": [
4-
"2.9",
5-
"2.10",
6-
"2.11",
7-
"2.12",
8-
"2.13",
9-
"2.14",
10-
"2.15"
11-
]
12-
}
2+
"_comment": "contains a list of core-driver interfaces branch names that this core supports",
3+
"versions": [
4+
"2.9",
5+
"2.10",
6+
"2.11",
7+
"2.12",
8+
"2.13",
9+
"2.14",
10+
"2.15",
11+
"2.16",
12+
"2.17",
13+
"2.18"
14+
]
15+
}

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.12.1",
73+
version="0.12.2",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",

supertokens_python/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
14-
SUPPORTED_CDI_VERSIONS = ["2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15"]
15-
VERSION = "0.12.1"
14+
SUPPORTED_CDI_VERSIONS = ["2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15", "2.16", "2.17", "2.18"]
15+
VERSION = "0.12.2"
1616
TELEMETRY = "/telemetry"
1717
USER_COUNT = "/users/count"
1818
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)