diff --git a/CHANGELOG.md b/CHANGELOG.md index 415e2e0..0bdfa7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.3] - 2024-10-29 + +### Changes + +- Added new FDI version support: 3.1, 4.0 + ## [0.6.2] - 2024-09-27 - Adds support for debug logs using a `debug` option in the init() method of the SDK. diff --git a/frontendDriverInterfaceSupported.json b/frontendDriverInterfaceSupported.json index 2df7286..d97424e 100644 --- a/frontendDriverInterfaceSupported.json +++ b/frontendDriverInterfaceSupported.json @@ -6,6 +6,8 @@ "1.18", "1.19", "2.0", - "3.0" + "3.0", + "3.1", + "4.0" ] } \ No newline at end of file diff --git a/lib/src/version.dart b/lib/src/version.dart index 3505c2a..d339894 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -5,7 +5,9 @@ class Version { "1.18", "1.19", "2.0", - "3.0" + "3.0", + "3.1", + "4.0" ]; - static String sdkVersion = "0.6.2"; + static String sdkVersion = "0.6.3"; } diff --git a/pubspec.yaml b/pubspec.yaml index f20af15..676f321 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: supertokens_flutter description: SuperTokens SDK for Flutter apps -version: 0.6.2 +version: 0.6.3 homepage: https://supertokens.com/ repository: https://github.com/supertokens/supertokens-flutter issue_tracker: https://github.com/supertokens/supertokens-flutter/issues