File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,15 +91,15 @@ platform :ios, '8.0'
91
91
use_frameworks!
92
92
93
93
target ' MyApp' do
94
- pod ' SwiftyJSON' , ' ~> 2.2.0 '
94
+ pod ' SwiftyJSON' , ' ~> 2.2.1 '
95
95
end
96
96
```
97
97
Note that it needs you to install CocoaPods 36 version, and requires your iOS deploy target >= 8.0:
98
98
99
99
####Carthage (iOS 8+, OS X 10.9+)
100
100
You can use [ Carthage] ( https://github.com/Carthage/Carthage ) to install ` SwiftyJSON ` by adding it to your ` Cartfile ` :
101
101
```
102
- github "SwiftyJSON/SwiftyJSON" >= 2.2.0
102
+ github "SwiftyJSON/SwiftyJSON" >= 2.2.1
103
103
```
104
104
105
105
####Manually (iOS 7+, OS X 10.9+)
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "SwiftyJSON"
3
- s . version = "2.2.0 "
3
+ s . version = "2.2.1 "
4
4
s . summary = "SwiftyJSON makes it easy to deal with JSON data in Swift"
5
5
s . homepage = "https://github.com/SwiftyJSON/SwiftyJSON"
6
6
s . license = { :type => "MIT" }
@@ -9,6 +9,6 @@ Pod::Spec.new do |s|
9
9
s . requires_arc = true
10
10
s . osx . deployment_target = "10.9"
11
11
s . ios . deployment_target = "8.0"
12
- s . source = { :git => "https://github.com/SwiftyJSON/SwiftyJSON.git" , :tag => "2.2.0 " }
12
+ s . source = { :git => "https://github.com/SwiftyJSON/SwiftyJSON.git" , :tag => "2.2.1 " }
13
13
s . source_files = "Source/*.swift"
14
14
end
You can’t perform that action at this time.
0 commit comments