Skip to content

Commit

Permalink
Change version info to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HJianBo committed May 2, 2019
1 parent f90df0e commit 698f2d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2
5.0
8 changes: 4 additions & 4 deletions CocoaMQTT.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Pod::Spec.new do |s|
s.name = "CocoaMQTT"
s.version = "1.1.3"
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 4"
s.version = "1.2.0"
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 5"
s.homepage = "https://github.com/emqtt/CocoaMQTT"
s.license = { :type => "MIT" }
s.authors = { "Feng Lee" => "[email protected]", "CrazyWisdom" => "[email protected]", "Alex Yu" => "[email protected]" }

s.swift_version = "4.2"
s.swift_version = "5.0"
s.requires_arc = true
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/emqtt/CocoaMQTT.git", :tag => "1.1.3"}
s.source = { :git => "https://github.com/emqtt/CocoaMQTT.git", :tag => "1.2.0"}
s.source_files = "Source/{*.h}", "Source/*.swift"
s.dependency "CocoaAsyncSocket", "~> 7.6.3"
end
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,13 @@ Install using [Carthage](https://github.com/Carthage/Carthage) by adding the fol
github "robbiehanson/CocoaAsyncSocket" "master"
github "emqtt/CocoaMQTT" "master"
````

Then, run the following command:

```bash
$ carthage update --platform iOS
```

Last if you're building for OS X:

- 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.
Expand All @@ -52,6 +54,7 @@ If you're building for iOS, tvOS:
`/usr/local/bin/carthage copy-frameworks`

- and add the paths to the frameworks you want to use under “Input Files”, e.g.:

```
$(SRCROOT)/Carthage/Build/iOS/CocoaMQTT.framework
```
Expand Down Expand Up @@ -129,6 +132,5 @@ MIT License (see `LICENSE`)

## Twitter


https://twitter.com/emqtt

0 comments on commit 698f2d2

Please sign in to comment.