Skip to content

Commit bfc9a9f

Browse files
committed
Prepare version 3.0.1
1 parent af0cfbc commit bfc9a9f

File tree

3 files changed

+34
-11
lines changed

3 files changed

+34
-11
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# RxAndroid Releases #
22

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+
314
### Version 3.0.0 - February, 14 2020 ###
415

516
General availability of RxAndroid 3.0 for use with RxJava 3.0!

README.md

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,12 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
2020
# Binaries
2121

2222
```groovy
23-
allprojects {
24-
repositories {
25-
maven { url "https://oss.jfrog.org/libs-snapshot" }
26-
}
27-
}
28-
2923
dependencies {
30-
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
24+
implementation 'io.reactivex.rxjava3:rxandroid:3.0.1'
3125
// Because RxAndroid releases are few and far between, it is recommended you also
3226
// explicitly depend on RxJava's latest version for bug fixes and new features.
3327
// (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'
3529
}
3630
```
3731

@@ -40,6 +34,26 @@ dependencies {
4034

4135
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).
4236

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+
4357

4458
## Build
4559

@@ -53,8 +67,6 @@ $ ./gradlew build
5367

5468
Further details on building can be found on the RxJava [Getting Started][start] page of the wiki.
5569

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-
5870
# Sample usage
5971

6072
A sample project which provides runnable code examples that demonstrate uses of the classes in this

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android.defaults.buildfeatures.resvalues=false
99
android.defaults.buildfeatures.shaders=false
1010

1111
GROUP=io.reactivex.rxjava3
12-
VERSION_NAME=3.0.1-SNAPSHOT
12+
VERSION_NAME=3.0.1
1313

1414
POM_NAME=RxAndroid
1515
POM_DESCRIPTION=RxAndroid

0 commit comments

Comments
 (0)