diff --git a/CHANGELOG.md b/CHANGELOG.md index 3940939ac..a29041432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [20.1.3] - 2024-09-30 + +- Replaces `psl` with `tldts` to avoid `punycode` deprecation warning. + ## [20.1.2] - 2024-09-14 - Fixes formFields to accept non string types as well. diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index cc8742596..c788f9605 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1,4 +1,4 @@ // @ts-nocheck -export declare const version = "20.1.2"; +export declare const version = "20.1.3"; export declare const cdiSupported: string[]; export declare const dashboardVersion = "0.13"; diff --git a/lib/build/version.js b/lib/build/version.js index fe52b9d4f..828d08498 100644 --- a/lib/build/version.js +++ b/lib/build/version.js @@ -15,7 +15,7 @@ exports.dashboardVersion = exports.cdiSupported = exports.version = void 0; * License for the specific language governing permissions and limitations * under the License. */ -exports.version = "20.1.2"; +exports.version = "20.1.3"; exports.cdiSupported = ["5.1"]; // Note: The actual script import for dashboard uses v{DASHBOARD_VERSION} exports.dashboardVersion = "0.13"; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index 9dd48baaf..bbaa5c475 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,7 +12,7 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const version = "20.1.2"; +export const version = "20.1.3"; export const cdiSupported = ["5.1"]; diff --git a/package-lock.json b/package-lock.json index 60cf15888..b8fec03d5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "20.1.2", + "version": "20.1.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 60cba9058..e12521494 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "20.1.2", + "version": "20.1.3", "description": "NodeJS driver for SuperTokens core", "main": "index.js", "scripts": {