Skip to content

Commit

Permalink
Upgrade to RxJava 3.0.0-RC4
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Oct 21, 2019
1 parent e0c55d7 commit f4568e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RxJava 3 interop library for supporting Java 9 features such as `Flow.*`
# Release

```groovy
compile 'com.github.akarnokd:rxjava3-jdk9-interop:3.0.0-RC3'
compile 'com.github.akarnokd:rxjava3-jdk9-interop:3.0.0-RC4'
```

# Examples
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.0.0-RC3
version=3.0.0-RC4
org.gradle.jvmargs=-XX:+IgnoreUnrecognizedVMOptions --permit-illegal-access --show-version

Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public void flowProcessorToFlowableProcessorOnSubscribe() {
public void flowProcessorToFlowableProcessorDecrementOnce() {
AtomicReference<Flow.Subscriber<? super Integer>> sub = new AtomicReference<>();

Flow.Processor<Integer, Integer> proc = new Flow.Processor<Integer, Integer>() {
Flow.Processor<Integer, Integer> proc = new Flow.Processor<>() {

@Override
public void onComplete() {
Expand Down

0 comments on commit f4568e7

Please sign in to comment.