diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eecbc2..060e878 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [4.0.7] - 2023-09-13 + +- Adds 1.18 to the list of FDI versions supported + ## [4.0.6] - 2023-09-12 ### Fixes diff --git a/frontendDriverInterfaceSupported.json b/frontendDriverInterfaceSupported.json index b2e0e63..b5bed4b 100644 --- a/frontendDriverInterfaceSupported.json +++ b/frontendDriverInterfaceSupported.json @@ -2,6 +2,7 @@ "_comment": "contains a list of frontend-backend interface versions that this package supports", "versions": [ "1.16", - "1.17" + "1.17", + "1.18" ] } \ No newline at end of file diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 1b304e4..ddc8d96 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1,2 +1,2 @@ -export declare const package_version = "4.0.6"; +export declare const package_version = "4.0.7"; export declare const supported_fdi: string[]; diff --git a/lib/build/version.js b/lib/build/version.js index cb6ebd2..36a4bcc 100644 --- a/lib/build/version.js +++ b/lib/build/version.js @@ -12,5 +12,5 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const package_version = "4.0.6"; -export const supported_fdi = ["1.16", "1.17"]; +export const package_version = "4.0.7"; +export const supported_fdi = ["1.16", "1.17", "1.18"]; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index 417c7a7..aa75fa8 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,6 +12,6 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const package_version = "4.0.6"; +export const package_version = "4.0.7"; -export const supported_fdi = ["1.16", "1.17"]; +export const supported_fdi = ["1.16", "1.17", "1.18"]; diff --git a/package-lock.json b/package-lock.json index f32c771..a24ab8c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "supertokens-react-native", - "version": "4.0.6", + "version": "4.0.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "supertokens-react-native", - "version": "4.0.6", + "version": "4.0.7", "license": "Apache 2.0", "dependencies": { "base-64": "^1.0.0", diff --git a/package.json b/package.json index c6ecce5..0bd8a10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-react-native", - "version": "4.0.6", + "version": "4.0.7", "description": "React Native SDK for SuperTokens", "main": "index.js", "scripts": {