Skip to content

Commit

Permalink
Merge pull request #170 from kishikawakatsumi/release-231
Browse files Browse the repository at this point in the history
Bump version to 2.3.1
  • Loading branch information
kishikawakatsumi committed Nov 1, 2015
2 parents dca6034 + b44d9b7 commit afe9d5a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion KeychainAccess.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "KeychainAccess"
s.version = "2.3.0"
s.version = "2.3.1"
s.summary = "KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X."
s.description = <<-DESC
KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X.
Expand Down
2 changes: 1 addition & 1 deletion Lib/KeychainAccess/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.3.0</string>
<string>2.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
18 changes: 15 additions & 3 deletions Lib/KeychainAccessTests/KeychainAccessTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,11 @@ class KeychainAccessTests: XCTestCase {
XCTAssertNil(attributes?.ref)
XCTAssertNotNil(attributes?.persistentRef)
XCTAssertEqual(attributes?.accessible, Accessibility.AfterFirstUnlock.rawValue)
XCTAssertNil(attributes?.accessControl)
if #available(iOS 9.0, *) {
XCTAssertNil(attributes?.accessControl)
} else {
XCTAssertNotNil(attributes?.accessControl)
}
XCTAssertEqual(attributes?.accessGroup, "")
XCTAssertNotNil(attributes?.synchronizable)
XCTAssertNotNil(attributes?.creationDate)
Expand Down Expand Up @@ -574,7 +578,11 @@ class KeychainAccessTests: XCTestCase {
XCTAssertNil(attributes?.ref)
XCTAssertNotNil(attributes?.persistentRef)
XCTAssertEqual(attributes?.accessible, Accessibility.AfterFirstUnlock.rawValue)
XCTAssertNil(attributes?.accessControl)
if #available(iOS 9.0, *) {
XCTAssertNil(attributes?.accessControl)
} else {
XCTAssertNotNil(attributes?.accessControl)
}
XCTAssertEqual(attributes?.accessGroup, "")
XCTAssertNotNil(attributes?.synchronizable)
XCTAssertNotNil(attributes?.creationDate)
Expand Down Expand Up @@ -613,7 +621,11 @@ class KeychainAccessTests: XCTestCase {
XCTAssertNil(attributes?.ref)
XCTAssertNotNil(attributes?.persistentRef)
XCTAssertEqual(attributes?.accessible, Accessibility.AfterFirstUnlock.rawValue)
XCTAssertNil(attributes?.accessControl)
if #available(iOS 9.0, *) {
XCTAssertNil(attributes?.accessControl)
} else {
XCTAssertNotNil(attributes?.accessControl)
}
XCTAssertEqual(attributes?.accessGroup, "")
XCTAssertNotNil(attributes?.synchronizable)
XCTAssertNotNil(attributes?.creationDate)
Expand Down
15 changes: 7 additions & 8 deletions Lib/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ def destinations
'name=iPhone 6 Plus,OS=9.0'
]
else
[
# 'name=iPad 2,OS=8.1',
# 'name=iPad Air,OS=8.1',
# 'name=iPhone 4s,OS=8.1',
# 'name=iPhone 5,OS=8.1',
# 'name=iPhone 5s,OS=8.1',
# 'name=iPhone 6,OS=8.1',
# 'name=iPhone 6 Plus,OS=8.1',
[ 'name=iPad 2,OS=8.1',
'name=iPad Air,OS=8.1',
'name=iPhone 4s,OS=8.1',
'name=iPhone 5,OS=8.1',
'name=iPhone 5s,OS=8.1',
'name=iPhone 6,OS=8.1',
'name=iPhone 6 Plus,OS=8.1',
'name=iPhone 6,OS=9.0',
'name=iPhone 6 Plus,OS=9.0',
'name=iPhone 6,OS=9.1',
Expand Down

0 comments on commit afe9d5a

Please sign in to comment.