Skip to content

Commit

Permalink
Prepare 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Nov 15, 2021
1 parent 84171ae commit fae85da
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## Version 1.0.2 (2021-11-15)
- Drops kotlin gradle plugin version down to 1.5.31 for source
compatibility.
- Will update to 1.6.0 when atomicfu & coroutines are released for it.

## Version 1.0.1 (2021-11-13)
- Add base 16 module
- Fixes potential Kotlin/Native freezing issue
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A full list of `kotlin-components` projects can be found [HERE](https://kotlin-c
// build.gradle.kts

dependencies {
val encoding = "1.0.1"
val encoding = "1.0.2"
implementation("io.matthewnelson.kotlin-components:encoding-base16:$encoding")
implementation("io.matthewnelson.kotlin-components:encoding-base32:$encoding")
implementation("io.matthewnelson.kotlin-components:encoding-base64:$encoding")
Expand All @@ -31,7 +31,7 @@ dependencies {
// build.gradle
dependencies {
def encoding = "1.0.1"
def encoding = "1.0.2"
implementation "io.matthewnelson.kotlin-components:encoding-base16:$encoding"
implementation "io.matthewnelson.kotlin-components:encoding-base32:$encoding"
implementation "io.matthewnelson.kotlin-components:encoding-base64:$encoding"
Expand Down
8 changes: 2 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ buildscript {

dependencies {
classpath(io.matthewnelson.kotlin.components.dependencies.plugins.android.gradle)

/* Replace version 1.5.31 with 1.6.0-RC2 due to native test errors with llvm */
classpath(io.matthewnelson.kotlin.components.dependencies.plugins.kotlin.gradle
.replaceAfterLast(':', "1.6.0-RC2")
)
classpath(io.matthewnelson.kotlin.components.dependencies.plugins.kotlin.gradle)
classpath(io.matthewnelson.kotlin.components.dependencies.plugins.intellij)
classpath(io.matthewnelson.kotlin.components.dependencies.plugins.mavenPublish)

Expand Down Expand Up @@ -52,7 +48,7 @@ plugins {

kmpPublish {
setupRootProject(
versionName = "1.0.2-SNAPSHOT",
versionName = "1.0.2",
versionCode = 102000,
pomInceptionYear = 2021,
)
Expand Down

0 comments on commit fae85da

Please sign in to comment.