Skip to content

Commit

Permalink
Prepare for release 3.0.0-alpha04
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Mar 3, 2019
1 parent b50f1dd commit fd911c2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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-")

0 comments on commit fd911c2

Please sign in to comment.