Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Release 2.7.1 #302

Merged
merged 1 commit into from
Jun 4, 2020
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
2 changes: 1 addition & 1 deletion SchibstedAccount.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SchibstedAccount'
s.version = '2.7.0'
s.version = '2.7.1'
s.summary = "SDK for a Schibsted identity service"
s.license = { :type => "MIT" }
s.homepage = "https://schibsted.github.io/account-sdk-ios/"
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
import Foundation

/// Version of the SDK.
public let sdkVersion = "2.7.0"
public let sdkVersion = "2.7.1"
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.7.0</string>
<string>2.7.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/URLSessionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@ class URLSessionTests: QuickSpec {
expect(user.tokens?.refreshToken).to(equal("abc"))
}

itBehavesLike("refresh failure") { ["status": 400, "logout": true] }
itBehavesLike("refresh failure") { ["status": 401, "logout": true] }
itBehavesLike("refresh failure") { ["status": 403, "logout": true] }
itBehavesLike("refresh failure") { ["status": 400, "logout": false] }
itBehavesLike("refresh failure") { ["status": 500, "logout": false] }
itBehavesLike("refresh failure") { ["status": 300, "logout": false] }
}
Expand Down