Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Readme.md #271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.
Expand All @@ -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
===========

Expand Down