From 2e8cde211fa42a86e59c4cf48fda58f75c44116c Mon Sep 17 00:00:00 2001 From: Nemi Shah Date: Thu, 14 Sep 2023 15:01:45 +0530 Subject: [PATCH] chore: Update FDI version to include 1.18 (#51) * Update FDI version * Update package version --------- Co-authored-by: Rishabh Poddar --- CHANGELOG.md | 6 +++++- SuperTokensIOS.podspec | 2 +- SuperTokensIOS/Classes/Version.swift | 4 ++-- frontendDriverInterfaceSupported.json | 3 ++- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bab5ca..b5bc7f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.5] - 2023-07-31 +## [0.2.6] - 2023-09-13 + +- Adds 1.18 to the list of supported FDI versions + +## [0.2.5] - 2023-09-13 - Fixes an issue where session tokens from network responses would not be consumed if they were not in lowercase (Credit: [mattanimation](https://github.com/mattanimation)) - Adds Swift Package Manager support (Credit: [mattanimation](https://github.com/mattanimation)) diff --git a/SuperTokensIOS.podspec b/SuperTokensIOS.podspec index 213ab25..1cd1d70 100644 --- a/SuperTokensIOS.podspec +++ b/SuperTokensIOS.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'SuperTokensIOS' - s.version = "0.2.5" + s.version = "0.2.6" s.summary = 'SuperTokens SDK for using login and session management functionality in iOS apps' # This description is used to generate tags and improve search results. diff --git a/SuperTokensIOS/Classes/Version.swift b/SuperTokensIOS/Classes/Version.swift index bb4bffb..fc71676 100644 --- a/SuperTokensIOS/Classes/Version.swift +++ b/SuperTokensIOS/Classes/Version.swift @@ -8,6 +8,6 @@ import Foundation internal class Version { - static let supported_fdi: [String] = ["1.16", "1.17"] - static let sdkVersion = "0.2.5" + static let supported_fdi: [String] = ["1.16", "1.17", "1.18"] + static let sdkVersion = "0.2.6" } 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