diff options
author | Allan Wang <me@allanwang.ca> | 2018-10-08 15:56:52 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2018-10-08 15:56:52 -0400 |
commit | 81739fa76510003b2acc51822d1e9258ddc8d536 (patch) | |
tree | 711618ed31d6fe10b35a7ca8d95d512118ceddb0 /docs | |
parent | be1d7bef2299824ebf9f4f6250838c3d215913cd (diff) | |
download | kau-81739fa76510003b2acc51822d1e9258ddc8d536.tar.gz kau-81739fa76510003b2acc51822d1e9258ddc8d536.tar.bz2 kau-81739fa76510003b2acc51822d1e9258ddc8d536.zip |
Move progress animator migration to 4.0.0
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Migration.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/Migration.md b/docs/Migration.md index e112850..ea30c0d 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -2,6 +2,13 @@ Below are some highlights on major refactoring/breaking changes +# v4.0.0 + +## Update ProgressAnimator + +`ProgressAnimator` has been completely rewritten to be an extension of `ValueAnimator`. +This for the most part is not a breaking change, apart from the fact that creating an animator will not start it immediately. + # v3.8.0 Along with the update to support Android Studio 3.1, a lot of changes have occurred with other dependencies and with lint. @@ -22,11 +29,6 @@ See [official docs](https://kotlinlang.org/docs/tutorials/android-plugin.html#vi KPref has been slightly refactored internally. Preferences backed by `StringSet` can now go back to `Set<String>` -## Update ProgressAnimator - -`ProgressAnimator` has been completely rewritten to be an extension of `ValueAnimator`. -This for the most part is not a breaking change, apart from the fact that creating an animator will not start it immediately. - # v3.6.0 ## startActivity |