diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f1999..0b2ce25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.2.0 (2016-02-27) + +There are a few method signature and behavior changes, so upgrade carefully. + +* [#47](https://github.com/trello/navi/pull/47) Added `Type.CREATE_PERSISTABLE`, `Type.SAVE_INSTANCE_STATE_PERSISTABLE` and `Type.RESTORE_INSTANCE_STATE_PERSISTABLE` so that the `ALL` tracker can distinguish between events. + + Also avoided calling `CREATE`, `SAVE_INSTANCE_STATE` and `RESTORE_INSTANCE_STATE` too often in persistable `Activities`. + +* [#46](https://github.com/trello/navi/pull/46) Destruction events now emit before their super() calls. +* [#41](https://github.com/trello/navi/pull/41) Removed unnecessary `Event` parameter from `NaviComponent.removeListener()`. +* [#39](https://github.com/trello/navi/pull/39) Added `NaviAppCompatDialogFragment`. + ## 0.1.3 (2015-12-03) * [#24](https://github.com/trello/navi/pull/24) Converted hasEvent() -> handlesEvents() diff --git a/README.md b/README.md index 7e2d8f5..79818e2 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ RxNavi.observe(naviComponent, Event.CREATE) ## Installation ```gradle -compile 'com.trello:navi:0.1.3' +compile 'com.trello:navi:0.2.0' ``` ## License diff --git a/gradle.properties b/gradle.properties index 01bfc04..746f5db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.trello -VERSION_NAME=0.1.3-SNAPSHOT -VERSION_CODE=4 +VERSION_NAME=0.2.0-SNAPSHOT +VERSION_CODE=5 POM_URL=https://github.com/trello/navi POM_SCM_URL=https://github.com/trello/navi