From 69180f2c3bf11f8cb39ea0da73f8d1740162807c Mon Sep 17 00:00:00 2001 From: Deepjyoti Barman Date: Thu, 3 Oct 2024 15:27:30 +0530 Subject: [PATCH] Fix export name for customframework and version --- CHANGELOG.md | 4 ++-- lib/build/version.d.ts | 2 +- lib/build/version.js | 2 +- lib/ts/version.ts | 2 +- package-lock.json | 4 ++-- package.json | 8 ++++---- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6db66defe..a3c885ea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] -## [20.1.4] - 2024-10-01 +## [20.2.0] - 2024-10-01 -- Adds `customFramework` util functions to minimize code required in custom frameworks like remix, astro etc. +- Adds `customframework` util functions to minimize code required in custom frameworks like remix, astro etc. ## [20.1.3] - 2024-09-30 diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 94b306c8a..38a320e5a 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.4"; +export declare const version = "20.2.0"; export declare const cdiSupported: string[]; export declare const dashboardVersion = "0.13"; diff --git a/lib/build/version.js b/lib/build/version.js index 045a8d8dd..d02e0bfc1 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.4"; +exports.version = "20.2.0"; 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 019a9144c..81671262e 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.4"; +export const version = "20.2.0"; export const cdiSupported = ["5.1"]; diff --git a/package-lock.json b/package-lock.json index 0b5e24635..e78fb247a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "supertokens-node", - "version": "20.1.4", + "version": "20.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "supertokens-node", - "version": "20.1.4", + "version": "20.2.0", "license": "Apache-2.0", "dependencies": { "buffer": "^6.0.3", diff --git a/package.json b/package.json index 8866d93f8..244474db5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "20.1.4", + "version": "20.2.0", "description": "NodeJS driver for SuperTokens core", "main": "index.js", "scripts": { @@ -65,15 +65,15 @@ "types": "./nextjs/index.d.ts", "default": "./nextjs/index.js" }, - "./customFramework": { + "./customframework": { "types": "./custom/index.d.ts", "default": "./custom/index.js" }, - "./customFramework/index": { + "./customframework/index": { "types": "./custom/index.d.ts", "default": "./custom/index.js" }, - "./customFramework/index.js": { + "./customframework/index.js": { "types": "./custom/index.d.ts", "default": "./custom/index.js" },