diff --git a/CHANGELOG.md b/CHANGELOG.md index 41c6b45..ca333fe 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] +## [0.2.8] - 2023-09-13 + +- Adds 1.18 to the list of supported FDI versions + ## [0.2.7] - 2023-07-31 - Updates supported FDI versions to include 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/src/version.dart b/lib/src/version.dart index ae5df1c..9875959 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,4 +1,4 @@ class Version { - static List supported_fdi = ["1.16", "1.17"]; - static String sdkVersion = "0.2.7"; + static List supported_fdi = ["1.16", "1.17", "1.18"]; + static String sdkVersion = "0.2.8"; } diff --git a/pubspec.yaml b/pubspec.yaml index 3bd0909..399f6d9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: supertokens_flutter description: SuperTokens SDK for Flutter apps -version: 0.2.7 +version: 0.2.8 homepage: https://supertokens.com/ repository: https://github.com/supertokens/supertokens-flutter issue_tracker: https://github.com/supertokens/supertokens-flutter/issues