From 059c510a66e23181d000460b7e8fc2dccc2fde1e Mon Sep 17 00:00:00 2001 From: Yang Date: Fri, 26 Jun 2020 20:46:00 +1000 Subject: [PATCH] Prepare for release 1.0.0-alpha01. --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57b3c35c4..c8527e46e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## Version 1.0.0-alpha01 + +_2020-06-26_ + +* Breaking change: Introduced a new `InitialValueFlow` type for the bindings which emit state. All bindings with the `emitImmediately: Boolean = false` param have been migrated to to return `InitialValueFlow`. This is also a behavior change as the current value of a widget will now be emitted immediately upon collection. The new `InitialValueFlow` provides a `skipInitialValue()` function for skipping the initial emission. +* Dependency updates: + * `drawerlayout:1.1.0` + * `fragment:1.2.5` + * `navigation:2.3.0` + * `swiperefreshlayout:1.1.0` + ## Version 0.12.0 _2020-05-29_ diff --git a/README.md b/README.md index 2200c87a3..2b6c40825 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Dependencies are hosted on [Maven Central][maven-central]. Latest version: ```groovy -def flowbinding_version = "0.12.0" +def flowbinding_version = "1.0.0-alpha01" ``` ### Platform Bindings diff --git a/gradle.properties b/gradle.properties index 6476a566b..3ddfd0c1e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.reactivecircus.flowbinding -VERSION_NAME=0.13.0-SNAPSHOT +VERSION_NAME=1.0.0-alpha01 POM_URL=https://github.com/reactivecircus/FlowBinding POM_SCM_URL=https://github.com/reactivecircus/FlowBinding