Skip to content

Commit

Permalink
Merge pull request #128 from ikesyo/release/2.1.0
Browse files Browse the repository at this point in the history
Release 2.1.0
  • Loading branch information
ikesyo authored Jun 21, 2016
2 parents 1598dd9 + ec25bff commit c93f341
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Himotoki.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Himotoki"
s.version = "2.0.1"
s.version = "2.1.0"
s.summary = "A type-safe JSON decoding library purely written in Swift"
s.description = <<-DESC
Himotoki (紐解き) is a type-safe JSON decoding library purely written in Swift. This library is highly inspired by popular JSON parsing libraries in Swift: [Argo](https://github.com/thoughtbot/Argo) and [ObjectMapper](https://github.com/Hearst-DD/ObjectMapper).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ There are 3 options. If your app support iOS 7, you can only use the last way.

Himotoki is [Carthage](https://github.com/Carthage/Carthage) compatible.

- Add `github "ikesyo/Himotoki" ~> 2.0` to your Cartfile.
- Add `github "ikesyo/Himotoki" ~> 2.1` to your Cartfile.
- Run `carthage update`.

### Framework with CocoaPods
Expand All @@ -115,7 +115,7 @@ Himotoki also can be used by [CocoaPods](https://cocoapods.org/).

```ruby
use_frameworks!
pod "Himotoki", "~> 2.0"
pod "Himotoki", "~> 2.1"
```

- Run `pod install`.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Casting.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ internal func castOrFail<T>(e: Extractor) throws -> T {
return try castOrFail(e.rawValue)
}

public func castOrFail<T>(any: Any?) throws -> T {
public func castOrFail<T>(any: Any) throws -> T {
guard let result = any as? T else {
throw typeMismatch("\(T.self)", actual: any, keyPath: nil)
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/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.0.1</string>
<string>2.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Himotoki/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.1</string>
<string>2.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit c93f341

Please sign in to comment.