Skip to content

Commit 2fd6aa7

Browse files
authored
End-of-life README (#246)
1 parent c06b4a1 commit 2fd6aa7

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

README.md

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
This is a Scala adapter to [RxJava](http://github.com/ReactiveX/RxJava).
44

5+
# End-of-Life (EOL) notice
6+
7+
**This project is end of life** and new releases will only contain bug-fixes and support for new Scala versions.
8+
For more information, see [issue #244](https://github.com/ReactiveX/RxScala/issues/244).
9+
10+
Alternatives to this library:
11+
12+
* [RxJava](https://github.com/ReactiveX/RxJava) (Java, similar API as RxScala)
13+
* [Reactor](https://projectreactor.io/) (Java)
14+
* [Akka Streams](https://doc.akka.io/docs/akka/current/stream/index.html) (Scala & Java)
15+
* [monix](https://monix.io/) (Scala)
16+
* [cats-effect](https://typelevel.org/cats-effect/) (Scala)
17+
* [fs2](https://github.com/functional-streams-for-scala/fs2) (Scala)
18+
* [ZIO](https://zio.dev/) (Scala)
19+
20+
# Usage
521
Example usage:
622

723
```scala
@@ -71,16 +87,13 @@ Scala code using Rx should only import members from `rx.lang.scala` and below.
7187

7288
## Communication
7389

74-
Since RxScala is part of the RxJava family the communication channels are similar:
75-
76-
- Google Group: [RxJava](http://groups.google.com/d/forum/rxjava)
77-
- Twitter: [@RxJava](http://twitter.com/RxJava)
7890
- [GitHub Issues](https://github.com/ReactiveX/RxScala/issues)
7991

8092
## Versioning
8193

8294
| RxScala version | Compatible RxJava version |
8395
| ------------------- | ------------------------- |
96+
| 0.27.* | 1.0.* |
8497
| 0.26.* | 1.0.* |
8598
| 0.25.* | 1.0.* |
8699
| 0.24.* | 1.0.* |
@@ -97,7 +110,7 @@ you should use the corresponding version of RxJava as the following table:
97110

98111
| RxScala version | Compatible RxJava version |
99112
| ------------------- | ------------------------- |
100-
| 0.26.5, 0.26.6 | 1.2.4+ |
113+
| 0.26.5 - 0.27.0 | 1.2.4+ |
101114
| 0.26.4 | 1.2.2+ |
102115
| 0.26.3 | 1.2.0+ |
103116
| 0.26.2 | 1.1.6+ |
@@ -127,10 +140,10 @@ RxJava:
127140

128141
Binaries and dependency information for Maven, Ivy, Gradle and others can be found at [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7C%22rxscala%22%20AND%20g%3A%22io.reactivex%22).
129142

130-
Example for sbt/activator:
143+
Example for sbt:
131144

132145
```scala
133-
libraryDependencies += "io.reactivex" %% "rxscala" % "x.y.z"
146+
libraryDependencies += "io.reactivex" %% "rxscala" % "0.27.0"
134147
```
135148

136149
and for Maven:
@@ -139,14 +152,14 @@ and for Maven:
139152
<dependency>
140153
<groupId>io.reactivex</groupId>
141154
<artifactId>rxscala_${scala.compat.version}</artifactId>
142-
<version>x.y.z</version>
155+
<version>0.27.0</version>
143156
</dependency>
144157
```
145158

146159
and for Ivy:
147160

148161
```xml
149-
<dependency org="io.reactivex" name="rxscala_${scala.compat.version}" rev="x.y.z" />
162+
<dependency org="io.reactivex" name="rxscala_${scala.compat.version}" rev="0.27.0" />
150163
```
151164

152165
## Build

0 commit comments

Comments
 (0)