Skip to content

Commit

Permalink
Prepare 1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed May 8, 2022
1 parent 22f0079 commit cc4499b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 1.1.1 (2022-05-08)
- Updates Kotlin-Components
- Bumps Kotlin `1.6.10` -> `1.6.21`

## Version 1.1.0 (2022-01-14)
- Bumps dependencies
- Enables Kotlin 1.6's new memory model
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# component-encoding
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)

![android](https://camo.githubusercontent.com/b1d9ad56ab51c4ad1417e9a5ad2a8fe63bcc4755e584ec7defef83755c23f923/687474703a2f2f696d672e736869656c64732e696f2f62616467652f706c6174666f726d2d616e64726f69642d3645444238442e7376673f7374796c653d666c6174)
Expand Down Expand Up @@ -31,9 +31,8 @@ A full list of `kotlin-components` projects can be found [HERE](https://kotlin-c

```kotlin
// build.gradle.kts

dependencies {
val encoding = "1.1.0"
val encoding = "1.1.1"
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 @@ -42,9 +41,8 @@ dependencies {

```groovy
// build.gradle
dependencies {
def encoding = "1.1.0"
def encoding = "1.1.1"
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 @@ -59,6 +57,7 @@ dependencies {
| :--------: | :----------: |
| 1.0.3 | 1.5.31 |
| 1.1.0 | 1.6.10 |
| 1.1.1 | 1.6.21 |

### Usage

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ plugins {

kmpPublish {
setupRootProject(
versionName = "1.2.0-SNAPSHOT",
versionName = "1.1.1",
// 1.0.0-alpha1 == 01_00_00_11
// 1.0.0-alpha2 == 01_00_00_12
// 1.0.0-beta1 == 01_00_00_21
Expand All @@ -71,7 +71,7 @@ kmpPublish {
// 1.0.1 == 01_00_01_99
// 1.1.1 == 01_01_01_99
// 1.15.1 == 01_15_01_99
versionCode = /*0 */1_02_00_99,
versionCode = /*0 */1_01_01_99,
pomInceptionYear = 2021,
)
}
2 changes: 1 addition & 1 deletion encoding-base16/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
kmpConfiguration {
setupMultiplatform(
setOf(
KmpTarget.Jvm.Jvm(kotlinJvmTarget = JavaVersion.VERSION_11),
KmpTarget.Jvm.Jvm.DEFAULT,

KmpTarget.NonJvm.JS(
compilerType = KotlinJsCompilerType.BOTH,
Expand Down
2 changes: 1 addition & 1 deletion encoding-base32/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
kmpConfiguration {
setupMultiplatform(
setOf(
KmpTarget.Jvm.Jvm(kotlinJvmTarget = JavaVersion.VERSION_11),
KmpTarget.Jvm.Jvm.DEFAULT,

KmpTarget.NonJvm.JS(
compilerType = KotlinJsCompilerType.BOTH,
Expand Down
2 changes: 1 addition & 1 deletion encoding-base64/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
kmpConfiguration {
setupMultiplatform(
setOf(
KmpTarget.Jvm.Jvm(kotlinJvmTarget = JavaVersion.VERSION_11),
KmpTarget.Jvm.Jvm.DEFAULT,

KmpTarget.NonJvm.JS(
compilerType = KotlinJsCompilerType.BOTH,
Expand Down
2 changes: 1 addition & 1 deletion encoding-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
kmpConfiguration {
setupMultiplatform(
setOf(
KmpTarget.Jvm.Jvm(kotlinJvmTarget = JavaVersion.VERSION_11),
KmpTarget.Jvm.Jvm.DEFAULT,

KmpTarget.NonJvm.JS(
compilerType = KotlinJsCompilerType.BOTH,
Expand Down

0 comments on commit cc4499b

Please sign in to comment.