From f8cd464de27023a1c42602783195ed0aaf32d19e Mon Sep 17 00:00:00 2001 From: Gabriel Peal Date: Mon, 1 Apr 2019 17:47:29 -0700 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 10 +++++++++- gradle.properties | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78dee442a..44106aefc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Change log -## Version 0.8.0 (Current development) +## Version 1.0.0 +- MvRx now requires androidx. +- Fix: prevented duplicate subscriptions when subscriptions are made after onCreate. [#210](https://github.com/airbnb/MvRx/pull/210) +- Respect uniqueOnly across configuration changes. [#207](https://github.com/airbnb/MvRx/pull/207) + - This comes with additional code in BaseMvRxFragment. If you are not using BaseMvRxFragment, please refer to [#207](https://github.com/airbnb/MvRx/pull/207) for the additional required code. +- Remove state coalescing. [#206](https://github.com/airbnb/MvRx/pull/207) +- Require that all MvRxViewModels actually provide a value for debugMode. [#196](https://github.com/airbnb/MvRx/pull/207) + +## Version 0.8.0 - **BREAKING:** `BaseMvRxViewModel` now requires the debug flag be explicitly set [#196](https://github.com/airbnb/MvRx/pull/196) ## Version 0.7.2 diff --git a/gradle.properties b/gradle.properties index 2ae6371cb..679567c34 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.7.2 +VERSION_NAME=1.0.0 GROUP=com.airbnb.android POM_DESCRIPTION=MvRx is an Android application framework that makes product development fast and fun.