Skip to content

Commit

Permalink
Prepare for release 3.0.0-beta01
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Sep 14, 2020
1 parent a70bab8 commit 6e87e69
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Change log for Splitties

## [Unreleased]
## Version 3.0.0-beta01 (2020-09-14)

Compiled with Kotlin 1.4.0 and kotlinx.coroutines 1.3.9-native-mt.
Compiled with Kotlin 1.4.10 and kotlinx.coroutines 1.3.9-native-mt.

This release has **multiplatform** splits compatible with iOS, macOS and watchOS projects that use Kotlin/Native 1.4.0 and 1.4.10.
Feedback is appreciated (Twitter, Kotlin's Slack, GitHub issues…).

### Platforms added

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ See [a short comparison of Splitties with Anko here](Comparison_with_anko.md).

Each module has been designed to have a **small footprint** and be as **efficient** as possible.

## All the multiplatform [splits](#what-is-a-split "What is a split in Splitties?")
## All the multiplatform [splits](#what-is-a-split "What is a split in Splitties?") (Kotlin 1.4.10)

- **[Bit Flags:](modules/bitflags)** `hasFlag`, `withFlag` and `minusFlag` extensions on `Long`, `Int`,
`Short`, `Byte`, and their unsigned counterparts.
Expand Down Expand Up @@ -142,7 +142,7 @@ Includes the following modules:
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-base:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-base:3.0.0-beta01")
```

There's also a version with Views DSL. It additionally includes the following modules:
Expand All @@ -154,7 +154,7 @@ There's also a version with Views DSL. It additionally includes the following mo
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-base-with-views-dsl:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-base-with-views-dsl:3.0.0-beta01")
```

#### Android AppCompat
Expand All @@ -168,7 +168,7 @@ These 2 packs include the [Android base](#android-base) pack, and the following
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-appcompat:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-appcompat:3.0.0-beta01")
```

There's also a version with Views DSL. It additionally includes the Views DSL version of the
Expand All @@ -178,7 +178,7 @@ There's also a version with Views DSL. It additionally includes the Views DSL ve
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-appcompat-with-views-dsl:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-appcompat-with-views-dsl:3.0.0-beta01")
```

#### Android Material Components
Expand All @@ -194,7 +194,7 @@ These 2 packs include the [Android AppCompat](#android-appcompat) pack, and the
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-material-components:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-material-components:3.0.0-beta01")
```

There's also a version with Views DSL. It additionally includes the Views DSL version of the
Expand All @@ -205,7 +205,7 @@ There's also a version with Views DSL. It additionally includes the Views DSL ve
Gradle dependency:

```kotlin
implementation("com.louiscad.splitties:splitties-fun-pack-android-material-components-with-views-dsl:3.0.0-alpha07")
implementation("com.louiscad.splitties:splitties-fun-pack-android-material-components-with-views-dsl:3.0.0-beta01")
```

#### All the artifacts (47)
Expand All @@ -216,7 +216,7 @@ into your root project `build.gradle` file:
```groovy
allProjects {
ext {
splitties_version = "3.0.0-alpha07"
splitties_version = "3.0.0-beta01"
}
}
```
Expand Down Expand Up @@ -290,10 +290,10 @@ allProjects {
repositories {
google()
jcenter() // Add dev versions repo below
maven { url 'https://dl.bintray.com/louiscad/splitties-dev' }
maven(url = "https://dl.bintray.com/louiscad/splitties-dev")
}
ext {
splitties_version = '3.0.0-dev-077'
splitties_version = '3.0.0-dev-107'
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion libraries_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0-dev-107
3.0.0-beta01
2 changes: 1 addition & 1 deletion plugin/README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:plugin_version: 0.1.0
:version: 3.0.0-alpha07
:version: 3.0.0-beta01
:plugin_id: com.louiscad.splitties
:gradle_portal: https://plugins.gradle.org/plugin/{plugin_id}
:plugin_badge: https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/{plugin_id}/{plugin_id}.gradle.plugin/maven-metadata.xml.svg?label=gradlePluginPortal&style=for-the-badge
Expand Down

0 comments on commit 6e87e69

Please sign in to comment.