diff --git a/CHANGELOG.md b/CHANGELOG.md index d95864fc..21a323d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.2.2-beta +- Adds extension functions to `LinearNavigator` for common navigation patterns. + ## 2.2.1-beta - Support interrupting transitions to prevent overlapping animations in `LazySetNavigator` diff --git a/README.md b/README.md index 0d020159..4ed914d9 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.1-beta' +def magellanVersion = '2.2.2-beta' implementation "com.wealthfront:magellan-library:${magellanVersion}" ``` diff --git a/RELEASING.md b/RELEASING.md index fbffa369..ba05bae4 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,7 +5,7 @@ - Update CHANGELOG.md for the impending release. - Update README.md with the new version. 2. `git commit -am "Prepare for release X.Y.Z"` (where X.Y.Z is the new version) -3. Open a Pull Request with the above changes. Get it merged +3. Open a Pull Request with the above changes. Get it merged. 4. Create a tag for this version - `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the version) - Push this tag to GitHub: `git push && git push --tags` @@ -20,7 +20,7 @@ Visit [Maven Central Repository Search](https://search.maven.org/search?q=magell 7. Change the repo's metadata to reflect the next development cycle - Change gradle.properties to the next SNAPSHOT version. - `git commit -am "Prepare next development version"` -8. Open a Pull Request with the above changes. Get it merged +8. Open a Pull Request with the above changes. Get it merged. ## Publish to local maven repo diff --git a/gradle.properties b/gradle.properties index 83afd9e7..e092d331 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.wealthfront -VERSION_NAME=2.2.2-SNAPSHOT +VERSION_NAME=2.2.2-beta POM_DESCRIPTION=The simplest navigation library for Android