From 42da871d9369f290d6ec4930636c40672143905b Mon Sep 17 00:00:00 2001 From: Erik Little Date: Tue, 1 Oct 2024 12:32:32 -0400 Subject: [PATCH] update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c701515..d5671939 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ let package = Package( .executable(name: "socket.io-test", targets: ["YourTargetName"]) ], dependencies: [ - .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMinor(from: "15.0.0")) + .package(url: "https://github.com/socketio/socket.io-client-swift", .upToNextMinor(from: "16.1.1")) ], targets: [ .target(name: "YourTargetName", dependencies: ["SocketIO"], path: "./Path/To/Your/Sources") @@ -74,7 +74,7 @@ Then import `import SocketIO`. ### Carthage Add this line to your `Cartfile`: ``` -github "socketio/socket.io-client-swift" ~> 15.2.0 +github "socketio/socket.io-client-swift" ~> 16.1.1 ``` Run `carthage update --platform ios,macosx`. @@ -88,7 +88,7 @@ Create `Podfile` and add `pod 'Socket.IO-Client-Swift'`: use_frameworks! target 'YourApp' do - pod 'Socket.IO-Client-Swift', '~> 15.2.0' + pod 'Socket.IO-Client-Swift', '~> 16.1.1' end ```