aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/Changelog.md23
-rw-r--r--docs/Migration.md21
2 files changed, 43 insertions, 1 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md
index feb5e4a..8320c7e 100644
--- a/docs/Changelog.md
+++ b/docs/Changelog.md
@@ -1,7 +1,28 @@
# Changelog
-## v5.2.1
+## v6.3.0
+* Add support for Arctic Fox 2020.3.1
+* Move to new maven release system
+* Many version bumps
+
+## v6.2.0
+* Add support for Android Studio 4.2
+* Remove all usages of kotlin synthetics
+* Many version bumps
+* Added Hilt dep
+
+## v6.1.0
+* Add support for Android 4.1 RC03
+* Breaking: Updated iconics, buganizer, and spotless dependencies (major version bump)
+
+## v6.0.0
+* Add support for Android 4.1.x
+* Add major version library updates (FastAdapter, AboutLibrary, Iconics)
+
+## v5.3.0
+* :about: Moved config builder inside activity
* :color: Allow option to disable selected ring
+* :core: Breaking KPref changes; see migration
## v5.2.0
* :about: Migrate about libraries to v7.x.x
diff --git a/docs/Migration.md b/docs/Migration.md
index fb29f7b..7d50456 100644
--- a/docs/Migration.md
+++ b/docs/Migration.md
@@ -2,6 +2,27 @@
Below are some highlights on major refactoring/breaking changes
+# v5.2.0
+
+## KPref
+
+In an effort to improve testing options, KPref has some updates to allow for in memory preferences during unit tests.
+While you can still use KPref like before as an object (provide the `KPrefFactoryAndroid` factory),
+it is recommended that you use some sort of dependency injection/service locator to provide the factory.
+An example can be found in the sample app test class.
+
+Also note that to better support in memory preferences, `reset()` will clear the in memory content for both variants,
+meaning that in memory preferences will reset to default. Previously, in memory `reset()` did nothing.
+
+## AboutActivityBase
+
+`configBuilder` was previously required in the constructor, but is now an open function so that activity fields can be used in the builder.
+
+## Gradle
+
+* Due to Spotless updates, gradle should not include the `clean` task ([#521](https://github.com/diffplug/spotless/issues/521)).
+* `buildToolsVersion` is already included in Android Studio, so you no longer need to specify the link with KAU.
+
# v5.1.0
## KPref