Skip to content

Commit dd9551e

Browse files
committed
Update for 2.2.1
1 parent 4cf6f02 commit dd9551e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ platform :ios, '8.0'
9191
use_frameworks!
9292

9393
target 'MyApp' do
94-
pod 'SwiftyJSON', '~> 2.2.0'
94+
pod 'SwiftyJSON', '~> 2.2.1'
9595
end
9696
```
9797
Note that it needs you to install CocoaPods 36 version, and requires your iOS deploy target >= 8.0:
9898

9999
####Carthage (iOS 8+, OS X 10.9+)
100100
You can use [Carthage](https://github.com/Carthage/Carthage) to install `SwiftyJSON` by adding it to your `Cartfile`:
101101
```
102-
github "SwiftyJSON/SwiftyJSON" >= 2.2.0
102+
github "SwiftyJSON/SwiftyJSON" >= 2.2.1
103103
```
104104

105105
####Manually (iOS 7+, OS X 10.9+)

SwiftyJSON.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SwiftyJSON"
3-
s.version = "2.2.0"
3+
s.version = "2.2.1"
44
s.summary = "SwiftyJSON makes it easy to deal with JSON data in Swift"
55
s.homepage = "https://github.com/SwiftyJSON/SwiftyJSON"
66
s.license = { :type => "MIT" }
@@ -9,6 +9,6 @@ Pod::Spec.new do |s|
99
s.requires_arc = true
1010
s.osx.deployment_target = "10.9"
1111
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"}
1313
s.source_files = "Source/*.swift"
1414
end

0 commit comments

Comments
 (0)