Skip to content

Commit 8a398d7

Browse files
committed
Bumps to 3.0.5 with prebuilt fmk built with Xcode 8.3.1
1 parent 6cb7391 commit 8a398d7

8 files changed

+10
-10
lines changed

Arrow.framework.zip

67.3 KB
Binary file not shown.

Arrow.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Arrow'
3-
s.version = "3.0.4"
3+
s.version = "3.0.5"
44
s.summary = "Elegant JSON Parsing in Swift"
55
s.homepage = "https://github.com/freshOS/Arrow"
66
s.license = { :type => "MIT", :file => "LICENSE" }

ArrowTests/Difficulty.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import Foundation
1010

1111
enum Difficulty: String {
12-
case Low
13-
case Medium
14-
case High
12+
case low
13+
case medium
14+
case high
1515
}

ArrowTests/EnumContainer.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
struct EnumContainer {
1212
var weekday: WeekDay = .monday
13-
var difficulty = Difficulty.Low
13+
var difficulty = Difficulty.low
1414
var optionalWeekday: WeekDay?
1515
var optionalDifficulty: Difficulty?
1616
}

ArrowTests/EnumTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ class EnumTests: XCTestCase {
2525
}
2626

2727
func testParsingEnumString() {
28-
XCTAssertEqual(enumContainer.difficulty, Difficulty.High)
28+
XCTAssertEqual(enumContainer.difficulty, Difficulty.high)
2929
}
3030

3131
func testParsingOptionalEnumInt() {
3232
XCTAssertEqual(enumContainer.optionalWeekday, WeekDay.wednesday)
3333
}
3434

3535
func testParsingOptionalEnumString() {
36-
XCTAssertEqual(enumContainer.optionalDifficulty, Difficulty.High)
36+
XCTAssertEqual(enumContainer.optionalDifficulty, Difficulty.high)
3737
}
3838
}

ArrowTests/Profile.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "15678",
33
"weekdayInt" : 3,
4-
"difficulty": "High",
4+
"difficulty": "high",
55
"link": "https://apple.com/steve",
66
"emoji_link": "http://🆒🔗.ws",
77
"accent_link": "http://gégé.com",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ if let collection = json.collection {
236236

237237
## Swift Version
238238
Swift 2 -> version **2.0.3**
239-
Swift 3 -> version **3.0.4**
239+
Swift 3 -> version **3.0.5**
240240

241241
## Acknoledgments
242242
This wouldn't exist without [YannickDot](https://github.com/YannickDot), [Damien-nd](https://github.com/damien-nd) and [maxkonovalov](https://github.com/maxkonovalov)

Source/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.0.4</string>
18+
<string>3.0.5</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)