Skip to content

Commit 698f2d2

Browse files
committed
Change version info to 1.2.0
1 parent f90df0e commit 698f2d2

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2
1+
5.0

CocoaMQTT.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Pod::Spec.new do |s|
22
s.name = "CocoaMQTT"
3-
s.version = "1.1.3"
4-
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 4"
3+
s.version = "1.2.0"
4+
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 5"
55
s.homepage = "https://github.com/emqtt/CocoaMQTT"
66
s.license = { :type => "MIT" }
77
s.authors = { "Feng Lee" => "feng@emqtt.io", "CrazyWisdom" => "zh.whong@gmail.com", "Alex Yu" => "alexyu.dc@gmail.com" }
88

9-
s.swift_version = "4.2"
9+
s.swift_version = "5.0"
1010
s.requires_arc = true
1111
s.osx.deployment_target = "10.9"
1212
s.ios.deployment_target = "8.0"
1313
s.tvos.deployment_target = "9.0"
1414
# s.watchos.deployment_target = "2.0"
15-
s.source = { :git => "https://github.com/emqtt/CocoaMQTT.git", :tag => "1.1.3"}
15+
s.source = { :git => "https://github.com/emqtt/CocoaMQTT.git", :tag => "1.2.0"}
1616
s.source_files = "Source/{*.h}", "Source/*.swift"
1717
s.dependency "CocoaAsyncSocket", "~> 7.6.3"
1818
end

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ Install using [Carthage](https://github.com/Carthage/Carthage) by adding the fol
3535
github "robbiehanson/CocoaAsyncSocket" "master"
3636
github "emqtt/CocoaMQTT" "master"
3737
````
38+
3839
Then, run the following command:
3940

4041
```bash
4142
$ carthage update --platform iOS
4243
```
44+
4345
Last if you're building for OS X:
4446

4547
- On your application targets “General” settings tab, in the “Embedded Binaries” section, drag and drop CocoaMQTT.framework from the Carthage/Build/Mac folder on disk.
@@ -52,6 +54,7 @@ If you're building for iOS, tvOS:
5254
`/usr/local/bin/carthage copy-frameworks`
5355

5456
- and add the paths to the frameworks you want to use under “Input Files”, e.g.:
57+
5558
```
5659
$(SRCROOT)/Carthage/Build/iOS/CocoaMQTT.framework
5760
```
@@ -129,6 +132,5 @@ MIT License (see `LICENSE`)
129132

130133
## Twitter
131134

132-
133135
https://twitter.com/emqtt
134136

0 commit comments

Comments
 (0)