File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,15 @@ Add the project as a dependency to your Package.swift:
75
75
import PackageDescription
76
76
77
77
let package = Package(
78
- name: "YourSocketIOProject",
78
+ name: "socket.io-test",
79
+ products: [
80
+ .executable(name: "socket.io-test", targets: ["YourTargetName"])
81
+ ],
79
82
dependencies: [
80
- .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "12.0.0"))
83
+ .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "12.1.0"))
84
+ ],
85
+ targets: [
86
+ .target(name: "YourTargetName", dependencies: ["SocketIO"], path: "./Path/To/Your/Sources")
81
87
]
82
88
)
83
89
```
@@ -87,7 +93,7 @@ Then import `import SocketIO`.
87
93
### Carthage
88
94
Add this line to your ` Cartfile ` :
89
95
```
90
- github "socketio/socket.io-client-swift" ~> 12.1.0 # Or latest version
96
+ github "socketio/socket.io-client-swift" ~> 12.1.1 # Or latest version
91
97
```
92
98
93
99
Run ` carthage update --platform ios,macosx ` .
@@ -101,7 +107,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`:
101
107
use_frameworks!
102
108
103
109
target ' YourApp' do
104
- pod ' Socket.IO-Client-Swift' , ' ~> 12.1.0 ' # Or latest version
110
+ pod ' Socket.IO-Client-Swift' , ' ~> 12.1.1 ' # Or latest version
105
111
end
106
112
```
107
113
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Socket.IO-Client-Swift"
3
3
s . module_name = "SocketIO"
4
- s . version = "12.1.0 "
4
+ s . version = "12.1.1 "
5
5
s . summary = "Socket.IO-client for iOS and OS X"
6
6
s . description = <<-DESC
7
7
Socket.IO-client for iOS and OS X.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
s . requires_arc = true
18
18
s . source = {
19
19
:git => "https://github.com/socketio/socket.io-client-swift.git" ,
20
- :tag => 'v12.1.0 ' ,
20
+ :tag => 'v12.1.1 ' ,
21
21
:submodules => true
22
22
}
23
23
s . pod_target_xcconfig = {
You can’t perform that action at this time.
0 commit comments