diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a323d1..4e3cc5dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.2.3-beta +- Fixes `onBackPressed` called twice for navigables at the top of a navigator's backstack +- Support non-Activity contexts (ie. ContextWrapper) + ## 2.2.2-beta - Adds extension functions to `LinearNavigator` for common navigation patterns. diff --git a/README.md b/README.md index 4ed914d9..bdd373bc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Add the dependencies you need in your `build.gradle`: ### Core library ```groovy -def magellanVersion = '2.2.2-beta' +def magellanVersion = '2.2.3-beta' implementation "com.wealthfront:magellan-library:${magellanVersion}" ``` diff --git a/gradle.properties b/gradle.properties index b155cdb6..608e8013 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.wealthfront -VERSION_NAME=2.2.3-SNAPSHOT +VERSION_NAME=2.2.3-beta POM_DESCRIPTION=The simplest navigation library for Android