diff --git a/SchibstedAccount.podspec b/SchibstedAccount.podspec
index 668f0f1f..82f4f15b 100644
--- a/SchibstedAccount.podspec
+++ b/SchibstedAccount.podspec
@@ -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/"
diff --git a/Source/Core/Version.swift b/Source/Core/Version.swift
index 3371e025..80988d25 100644
--- a/Source/Core/Version.swift
+++ b/Source/Core/Version.swift
@@ -6,4 +6,4 @@
import Foundation
/// Version of the SDK.
-public let sdkVersion = "2.7.0"
+public let sdkVersion = "2.7.1"
diff --git a/Source/Info.plist b/Source/Info.plist
index f1c0829f..99599ede 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.7.0
+ 2.7.1
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/Tests/URLSessionTests.swift b/Tests/URLSessionTests.swift
index 166c52c1..920a26a0 100644
--- a/Tests/URLSessionTests.swift
+++ b/Tests/URLSessionTests.swift
@@ -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] }
}