Skip to content

Commit 677e78b

Browse files
author
Yossi Abraham
committed
Release 0.2.0
1 parent 73ea9dc commit 677e78b

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,29 @@
33
[![Platform](https://img.shields.io/cocoapods/p/Swamp.svg?style=flat)](http://cocoapods.org/pods/Swamp)
44
## Swamp - Swift WAMP implementation
55

6-
Swamp is a WAMP implementation in Swift 2. (Swift 3 support underway)
6+
Swamp is a WAMP implementation in Swift.
77

88
It currently supports calling remote procedures, subscribing on topics, and publishing events. It also supports authentication using ticket & wampcra authentication.
99

10-
Swamp `0.1.0` utilizes WebSockets as its only available transport, and JSON as its serialization method.
10+
Swamp utilizes WebSockets as its only available transport, and JSON as its serialization method.
1111

1212
Contributions to support MessagePack & Raw Sockets will be merged gladly!
1313

14-
## Requirements
15-
iOS 8.0 or OSX 10.9
14+
## Swift Versions
15+
16+
| Swift Version | Swamp Version | Requirements |
17+
|---------------|-----------------|----------------------|
18+
| 2.x | 0.1.x | OSX 10.9 or iOS 8.0 |
19+
| 3 | 0.2.0 and above | OSX 10.10 or iOS 8.0 |
1620

1721
## Installation
1822
Swamp is available through cocoapods. Add
1923

2024
```ruby
21-
pod "Swamp"
25+
pod 'Swamp', '~> 0.2.0'
2226
```
2327

24-
to your Podfile.
28+
to your Podfile. (use `'~> 0.1.0'` for Swift 2)
2529

2630
## Usage
2731
#### Connect to router
@@ -183,10 +187,10 @@ You can also inspect `Example/swamp-crossbar-instance.log` to find out what happ
183187
4. More generic and comfortable API
184188
5. Advanced profile features
185189

186-
## Authors
190+
## Contributions
187191

188-
- Yossi Abraham, yo.ab@outlook.com.
189-
- You?
192+
- Yossi Abraham, yo.ab@outlook.com (Author)
193+
- Dany Sousa, @danysousa (Swift 3 support)
190194

191195
## License
192196

Swamp.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'Swamp'
11-
s.version = '0.1.2'
11+
s.version = '0.2.0'
1212
s.summary = 'WAMP protocol implementation in swift'
1313

1414
# This description is used to generate tags and improve search results.
@@ -18,13 +18,13 @@ Pod::Spec.new do |s|
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

2020
s.description = <<-DESC
21-
the WAMP WebSocket subprotocol implemented purely in Swift using Starscream, SwiftyJSON & SwiftPack
21+
the WAMP WebSocket subprotocol implemented purely in Swift using Starscream, SwiftyJSON
2222
DESC
2323

2424
s.homepage = 'https://github.com/iscriptology/Swamp'
2525
s.license = { :type => 'MIT', :file => 'LICENSE' }
2626
s.author = { 'Yossi Abraham' => 'yo.ab@outlook.com' }
27-
s.source = { :git => 'https://github.com/danysousa/swamp.git', :tag => s.version.to_s }
27+
s.source = { :git => 'https://github.com/iscriptology/Swamp.git', :tag => s.version.to_s }
2828

2929
s.ios.deployment_target = '8.0'
3030
s.osx.deployment_target = '10.10'

0 commit comments

Comments
 (0)