aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-07 14:07:08 -0400
committerAllan Wang <me@allanwang.ca>2019-06-07 14:07:08 -0400
commit646d1f2385bd5b39a4d544125855533a6096bca3 (patch)
treecf3c9f1abcf7d258cfebe8562ba914066c7bbd4d
parent319555a3fa3e4e0fda45aef913436034fe735c4d (diff)
downloadkau-646d1f2385bd5b39a4d544125855533a6096bca3.tar.gz
kau-646d1f2385bd5b39a4d544125855533a6096bca3.tar.bz2
kau-646d1f2385bd5b39a4d544125855533a6096bca3.zip
Update versions
-rw-r--r--buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt3
-rw-r--r--buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt6
-rw-r--r--core-ui/src/main/res-public/values/public.xml2
-rw-r--r--core/src/main/res-public/values/public.xml2
-rw-r--r--docs/Changelog.md4
5 files changed, 10 insertions, 7 deletions
diff --git a/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt b/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt
index c8265ab..30caad7 100644
--- a/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt
+++ b/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt
@@ -10,7 +10,6 @@ open class Plugins {
val androidMaven = "com.github.dcendents:android-maven-gradle-plugin:${v.mavenPlugin}"
val playPublisher = "com.github.triplet.gradle:play-publisher:${v.playPublishPlugin}"
val dexCount = "com.getkeepsafe.dexcount:dexcount-gradle-plugin:${v.dexCountPlugin}"
- val gitVersion =
- "gradle.plugin.com.gladed.gradle.androidgitversion:gradle-android-git-version:${v.gitVersionPlugin}"
+ val gitVersion = "com.gladed.androidgitversion:gradle-android-git-version:${v.gitVersionPlugin}"
val spotless = "com.diffplug.spotless:spotless-plugin-gradle:${v.spotless}"
} \ No newline at end of file
diff --git a/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt b/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt
index 8c14a92..d48e236 100644
--- a/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt
+++ b/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt
@@ -27,7 +27,7 @@ open class Versions {
val kotlin = "1.3.31"
// https://github.com/Kotlin/kotlinx.coroutines/releases
- val coroutines = "1.2.1"
+ val coroutines = "1.3.0-M1"
// https://github.com/mikepenz/AboutLibraries/releases
val aboutLibraries = "6.2.3"
@@ -70,11 +70,11 @@ open class Versions {
// https://github.com/dcendents/android-maven-gradle-plugin/releases
val mavenPlugin = "2.1"
// https://github.com/Triple-T/gradle-play-publisher/releases
- val playPublishPlugin = "2.1.0"
+ val playPublishPlugin = "2.2.1"
// https://github.com/KeepSafe/dexcount-gradle-plugin/releases
val dexCountPlugin = "0.8.6"
// https://github.com/gladed/gradle-android-git-version/releases
- val gitVersionPlugin = "0.4.7"
+ val gitVersionPlugin = "0.4.9"
} \ No newline at end of file
diff --git a/core-ui/src/main/res-public/values/public.xml b/core-ui/src/main/res-public/values/public.xml
index f46b3eb..af7ce44 100644
--- a/core-ui/src/main/res-public/values/public.xml
+++ b/core-ui/src/main/res-public/values/public.xml
@@ -1,5 +1,5 @@
<resources xmlns:tools='http://schemas.android.com/tools' tools:ignore='ResourceName'>
-<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task -->
+<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task -->
<public name='kau_recycler_detached_background' type='layout' />
<public name='kau_elastic_recycler_activity' type='layout' />
<public name='kau_recycler_textslider' type='layout' />
diff --git a/core/src/main/res-public/values/public.xml b/core/src/main/res-public/values/public.xml
index ea8ed73..9761199 100644
--- a/core/src/main/res-public/values/public.xml
+++ b/core/src/main/res-public/values/public.xml
@@ -1,5 +1,5 @@
<resources xmlns:tools='http://schemas.android.com/tools' tools:ignore='ResourceName'>
-<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task -->
+<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task -->
<public name='kau_slide_in_top' type='anim' />
<public name='kau_slide_in_left' type='anim' />
<public name='kau_slide_out_right' type='anim' />
diff --git a/docs/Changelog.md b/docs/Changelog.md
index a2c38e1..61e5fb7 100644
--- a/docs/Changelog.md
+++ b/docs/Changelog.md
@@ -1,5 +1,9 @@
# Changelog
+## v5.0.0
+* :core: Update Material Dialogs to 3.x
+* :colorpicker: Strip down to just the interface; unless you require the accent palette, it may be fine to just use MD's color extension
+
## v4.1.0
* :core: Deprecate NetworkUtils, as the underlying functions are deprecated
* :core: Permission manager no longer synchronized, as all actions should occur in the main thread