Skip to content

Commit

Permalink
Prepare version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Sep 13, 2019
1 parent 1b6ad44 commit 2b133d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
==========

Version 2.2.0 *(2019-09-13)
---------------------------

* New: `createWithDefault` factory for supplying a default cached value. Currently, the first
subscriber has to wait for the upstream source to emit. By specifying a default value you can
deliver a value immediately upon subscribe in a way similar to that if an event from another
subscriber had already been cached.
* New: Annotate public API surface with nullability annotations.


Version 2.1.1 *(2019-02-19)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ Maven:
<dependency>
<groupId>com.jakewharton.rx2</groupId>
<artifactId>replaying-share</artifactId>
<version>2.1.1</version>
<version>2.2.0</version>
</dependency>
```
Gradle:
```groovy
compile 'com.jakewharton.rx2:replaying-share:2.1.1'
compile 'com.jakewharton.rx2:replaying-share:2.2.0'
```

If you use Kotlin, a package with an extension method for both `Observable` and `Flowable` is
Expand Down

0 comments on commit 2b133d3

Please sign in to comment.