File tree Expand file tree Collapse file tree
Sources/KakaJSON/Metadata Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33---
44
5- ## new
5+ ## [ 1.1.1] ( https://github.com/kakaopensource/KakaJSON/releases/tag/1.1.1 ) (2019-11-04)
6+ - Closed issues
7+ - [iOS 9 Crash](https://github.com/kakaopensource/KakaJSON/issues/31)
68- Merged pull requests
79 - [use isUppercase to check if the character is uppercase](https://github.com/kakaopensource/KakaJSON/pull/20)
810 - [A key should be able to contain dot](https://github.com/kakaopensource/KakaJSON/pull/21)
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "KakaJSON"
3- s . version = "1.1.0 "
3+ s . version = "1.1.1 "
44 s . summary = "Fast conversion between JSON and model in Swift"
55 s . homepage = "https://github.com/kakaopensource/KakaJSON"
66 s . license = { :type => "MIT" }
Original file line number Diff line number Diff line change 1818
1919### CocoaPods
2020``` ruby
21- pod ' KakaJSON' , ' ~> 1.1.0 '
21+ pod ' KakaJSON' , ' ~> 1.1.1 '
2222```
2323
2424### Carthage
2525``` ruby
26- github " kakaopensource/KakaJSON" ~ > 1.1 .0
26+ github " kakaopensource/KakaJSON" ~ > 1.1 .1
2727```
2828
2929### Swift Package Manager
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ public struct Metadata {
1919
2020 // name
2121 let name = String ( describing: type)
22- if name == " Swift._SwiftObject " || name == " NSObject " { return nil }
22+ if name == " Swift._SwiftObject "
23+ || name == " NSObject "
24+ || name == " _TtCs12_SwiftObject " { return nil }
2325
2426 typeLock. lock ( )
2527 defer { typeLock. unlock ( ) }
You can’t perform that action at this time.
0 commit comments