diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f62b5fe..a7fa96bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog +## 2.2.11-beta +- Fix `DefaultTransition` animation when destination hasn't been measured yet + ## 2.2.10-beta - Support `navigableId` for customizing names of navigables in `NavigationTraverser` - Revert transition interruption -- Fix `DefaultTransition` animation when destination hasn't been measured yet ## 2.2.9-beta - Support transition interruption in `NavigationDelegate` diff --git a/README.md b/README.md index 08b2e4a8..d4231035 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.9-beta' +def magellanVersion = '2.2.11-beta' implementation "com.wealthfront:magellan-library:${magellanVersion}" ``` diff --git a/gradle.properties b/gradle.properties index 952cc91b..e2237c03 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.wealthfront -VERSION_NAME=2.2.11-SNAPSHOT +VERSION_NAME=2.2.11-beta POM_DESCRIPTION=The simplest navigation library for Android