Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update FDI version to include 1.18 #51

Merged
merged 4 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion SuperTokensIOS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions SuperTokensIOS/Classes/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion frontendDriverInterfaceSupported.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
Loading