From fd911c2491b8982ae2a059e695f7421348696293 Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Sun, 3 Mar 2019 11:57:20 +0100 Subject: [PATCH] Prepare for release 3.0.0-alpha04 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 2 +- buildSrc/src/main/kotlin/ProjectVersions.kt | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f62d1ebe..dff06a070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change log for Splitties +## Version 3.0.0-alpha04 (2019-03-03) +Compiled with Kotlin 1.3.21. + +### New features +- The `wrapContent` and `matchParent` extensions for `ViewGroup` now apply for `View` too. +- Add `wrapInScrollView` and `wrapInHorizontalScrollView` extension functions for `View`. +- Add experimental multiplatform support with initial Kotlin/JS support for the `Bit Flags` and `Collections` splits. + +### Changes + +- Rename `LifecycleOwner.coroutineScope` to `lifecycleScope`. This change is binary compatible. +- Make `wrapInRecyclerView` lambda inline. This change is not binary compatible. + +### Fixes + +- Remove contract in the `Intents` split that would cause compilation to fail when used. + ## Version 3.0.0-alpha03 (2019-02-05) Compiled with Kotlin 1.3.20. diff --git a/README.md b/README.md index a34007e4f..4c9575ebc 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ into your root project `build.gradle` file: ```groovy allProjects { ext { - splitties_version = "3.0.0-alpha03" + splitties_version = "3.0.0-alpha04" } } ``` diff --git a/buildSrc/src/main/kotlin/ProjectVersions.kt b/buildSrc/src/main/kotlin/ProjectVersions.kt index 968716429..364978cb3 100644 --- a/buildSrc/src/main/kotlin/ProjectVersions.kt +++ b/buildSrc/src/main/kotlin/ProjectVersions.kt @@ -5,7 +5,7 @@ object ProjectVersions { const val androidBuildTools = "28.0.3" const val androidSdk = 28 - const val thisLibrary = "3.0.0-dev-001" + const val thisLibrary = "3.0.0-alpha04" } val isDevVersion = ProjectVersions.thisLibrary.contains("-dev-")