From b85fd9b16b7f860480c54ff67484628b0f140db5 Mon Sep 17 00:00:00 2001 From: JongChan Kim Date: Mon, 1 Aug 2022 00:36:43 +0900 Subject: [PATCH] Update Readme.md --- Readme.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index c1689ca..7885c16 100644 --- a/Readme.md +++ b/Readme.md @@ -10,7 +10,7 @@ If you're using [RxSwift](https://github.com/ReactiveX/RxSwift), you may have en Installation =========== -This branch of RxSwiftExt targets Swift 5.x and RxSwift 5.0.0 or later. +This branch of RxSwiftExt targets Swift 5.x and RxSwift 6.0.0 or later. * If you're looking for the Swift 4 version of RxSwiftExt, please use version `3.4.0` of the framework. @@ -19,7 +19,7 @@ This branch of RxSwiftExt targets Swift 5.x and RxSwift 5.0.0 or later. Add to your `Podfile`: ```ruby -pod 'RxSwiftExt', '~> 5' +pod 'RxSwiftExt', '~> 6' ``` This will install both the `RxSwift` and `RxCocoa` extensions. @@ -43,6 +43,21 @@ Add this to your `Cartfile` github "RxSwiftCommunity/RxSwiftExt" ``` +#### Swift Package Manager + +Create a `Package.swift` file. + +```swift +import PackageDescription + +let package = Package( + name: "SampleProject", + dependencies: [ + .package(url: "https://github.com/RxSwiftCommunity/RxSwiftExt.git", from: "6.0.0") + ] +) +``` + Operators ===========