Skip to content

Commit

Permalink
Update for Xcode8b6/Swift 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mauro committed Aug 19, 2016
1 parent d033ea2 commit aff4802
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Hashids.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,11 @@
TargetAttributes = {
51AE31221B8D19F6007E7CA4 = {
CreatedOnToolsVersion = 6.4;
LastSwiftMigration = 0800;
};
51AE312D1B8D19F6007E7CA4 = {
CreatedOnToolsVersion = 6.4;
LastSwiftMigration = 0800;
};
};
};
Expand Down Expand Up @@ -343,6 +345,7 @@
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 2.3;
};
name = Debug;
};
Expand All @@ -361,6 +364,7 @@
PRODUCT_BUNDLE_IDENTIFIER = "com.buzzfeed.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_VERSION = 2.3;
};
name = Release;
};
Expand All @@ -376,6 +380,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.buzzfeed.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 2.3;
};
name = Debug;
};
Expand All @@ -387,6 +392,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.buzzfeed.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 2.3;
};
name = Release;
};
Expand Down
2 changes: 1 addition & 1 deletion HashidsTests/HashidsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class HashIdsTests: XCTestCase {
func testBigDataSet() {
var input = [Int]()
for _ in 0..<100 {
input.append(random())
input.append(Int(arc4random()))
}
let hashids = Hashids(salt: "this is my salt")
let hash = hashids.encode(input)
Expand Down

0 comments on commit aff4802

Please sign in to comment.