Skip to content

Commit 12e7191

Browse files
committed
Fix for iOS9
1 parent 178e215 commit 12e7191

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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)

KakaJSON.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::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" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
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

Sources/KakaJSON/Metadata/Metadata.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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() }

0 commit comments

Comments
 (0)