Skip to content

Commit

Permalink
Bumps to 3.0.5 with prebuilt fmk built with Xcode 8.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
s4cha committed Apr 13, 2017
1 parent 6cb7391 commit 8a398d7
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Binary file modified Arrow.framework.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Arrow.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Arrow'
s.version = "3.0.4"
s.version = "3.0.5"
s.summary = "Elegant JSON Parsing in Swift"
s.homepage = "https://github.com/freshOS/Arrow"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
6 changes: 3 additions & 3 deletions ArrowTests/Difficulty.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation

enum Difficulty: String {
case Low
case Medium
case High
case low
case medium
case high
}
2 changes: 1 addition & 1 deletion ArrowTests/EnumContainer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

struct EnumContainer {
var weekday: WeekDay = .monday
var difficulty = Difficulty.Low
var difficulty = Difficulty.low
var optionalWeekday: WeekDay?
var optionalDifficulty: Difficulty?
}
4 changes: 2 additions & 2 deletions ArrowTests/EnumTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ class EnumTests: XCTestCase {
}

func testParsingEnumString() {
XCTAssertEqual(enumContainer.difficulty, Difficulty.High)
XCTAssertEqual(enumContainer.difficulty, Difficulty.high)
}

func testParsingOptionalEnumInt() {
XCTAssertEqual(enumContainer.optionalWeekday, WeekDay.wednesday)
}

func testParsingOptionalEnumString() {
XCTAssertEqual(enumContainer.optionalDifficulty, Difficulty.High)
XCTAssertEqual(enumContainer.optionalDifficulty, Difficulty.high)
}
}
2 changes: 1 addition & 1 deletion ArrowTests/Profile.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "15678",
"weekdayInt" : 3,
"difficulty": "High",
"difficulty": "high",
"link": "https://apple.com/steve",
"emoji_link": "http://🆒🔗.ws",
"accent_link": "http://gégé.com",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ if let collection = json.collection {

## Swift Version
Swift 2 -> version **2.0.3**
Swift 3 -> version **3.0.4**
Swift 3 -> version **3.0.5**

## Acknoledgments
This wouldn't exist without [YannickDot](https://github.com/YannickDot), [Damien-nd](https://github.com/damien-nd) and [maxkonovalov](https://github.com/maxkonovalov)
Expand Down
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>3.0.4</string>
<string>3.0.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 8a398d7

Please sign in to comment.