File tree Expand file tree Collapse file tree 3 files changed +34
-11
lines changed Expand file tree Collapse file tree 3 files changed +34
-11
lines changed Original file line number Diff line number Diff line change 1
1
# RxAndroid Releases #
2
2
3
+ ### Version 3.0.1 - November, 8 2022 ###
4
+
5
+ Fixed:
6
+ - ` AndroidSchedulers.mainThread() ` now correctly checks whether async messages are supported by the
7
+ current Android version. Previously it always assumed they were available (true on API 16+).
8
+
9
+ Changed:
10
+ - Update to RxJava 3.1.5. This includes a transitive dependency bump to Reactive-Streams 1.0.4 which
11
+ re-licenses that dependency from CC-0 to MIT-0.
12
+
13
+
3
14
### Version 3.0.0 - February, 14 2020 ###
4
15
5
16
General availability of RxAndroid 3.0 for use with RxJava 3.0!
Original file line number Diff line number Diff line change @@ -20,18 +20,12 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
20
20
# Binaries
21
21
22
22
``` groovy
23
- allprojects {
24
- repositories {
25
- maven { url "https://oss.jfrog.org/libs-snapshot" }
26
- }
27
- }
28
-
29
23
dependencies {
30
- implementation 'io.reactivex.rxjava3:rxandroid:3.0.0 '
24
+ implementation 'io.reactivex.rxjava3:rxandroid:3.0.1 '
31
25
// Because RxAndroid releases are few and far between, it is recommended you also
32
26
// explicitly depend on RxJava's latest version for bug fixes and new features.
33
27
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
34
- implementation 'io.reactivex.rxjava3:rxjava:3.0.0 '
28
+ implementation 'io.reactivex.rxjava3:rxjava:3.1.5 '
35
29
}
36
30
```
37
31
@@ -40,6 +34,26 @@ dependencies {
40
34
41
35
Additional binaries and dependency information for can be found at [ search.maven.org] ( http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.reactivex.rxjava3%22%20a%3A%22rxandroid%22 ) .
42
36
37
+ <details >
38
+ <summary >Snapshots of the development version are available in Sonatype's snapshots repository.</summary >
39
+ <p >
40
+
41
+ ``` groovy
42
+ repositories {
43
+ mavenCentral()
44
+ maven {
45
+ url 'https://oss.sonatype.org/content/repositories/snapshots/'
46
+ }
47
+ }
48
+
49
+ dependencies {
50
+ implementation 'io.reactivex.rxjava3:rxandroid:3.1.0-SNAPSHOT'
51
+ }
52
+ ```
53
+
54
+ </p >
55
+ </details >
56
+
43
57
44
58
## Build
45
59
@@ -53,8 +67,6 @@ $ ./gradlew build
53
67
54
68
Further details on building can be found on the RxJava [ Getting Started] [ start ] page of the wiki.
55
69
56
- <a href =' https://travis-ci.org/ReactiveX/RxAndroid/builds ' ><img src =' https://api.travis-ci.org/ReactiveX/RxAndroid.svg?branch=3.x ' ></a >
57
-
58
70
# Sample usage
59
71
60
72
A sample project which provides runnable code examples that demonstrate uses of the classes in this
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ android.defaults.buildfeatures.resvalues=false
9
9
android.defaults.buildfeatures.shaders =false
10
10
11
11
GROUP =io.reactivex.rxjava3
12
- VERSION_NAME =3.0.1-SNAPSHOT
12
+ VERSION_NAME =3.0.1
13
13
14
14
POM_NAME =RxAndroid
15
15
POM_DESCRIPTION =RxAndroid
You can’t perform that action at this time.
0 commit comments