Skip to content

Commit

Permalink
Prepare 0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 10, 2024
1 parent 0faa2a9 commit 8d4304e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## Version 0.2.1 (2024-03-10)
- Update dependencies:
- KGP -> `1.9.23`
- Adds experimental support to `jvm` for configuring
multi-release Jars to include `module-info.java` [[#45]][pr-45]

## Version 0.2.0 (2024-02-25)
- Update dependencies:
- AGP -> `8.2.2`
Expand Down Expand Up @@ -98,3 +104,4 @@
[pr-35]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/35
[pr-40]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/40
[pr-43]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/43
[pr-45]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/45
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ plugins {
id("com.android.library") version("x.x.x") apply(false)

id("org.jetbrains.kotlin.multiplatform") version("x.x.x") apply(false)
id("io.matthewnelson.kmp.configuration") version("0.2.0")
id("io.matthewnelson.kmp.configuration") version("0.2.1")
}
```

Expand All @@ -370,7 +370,7 @@ plugins {
id 'com.android.library' version 'x.x.x' apply false
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
id 'io.matthewnelson.kmp.configuration' version '0.2.0'
id 'io.matthewnelson.kmp.configuration' version '0.2.1'
}
```

Expand All @@ -392,7 +392,7 @@ buildscript {
dependencies {
// kotlin gradle
// android gradle (if you have an android target)
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.2.0")
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.2.1")
}
}
```
Expand Down Expand Up @@ -424,7 +424,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.2.0'
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.2.1'
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ POM_DEVELOPER_ID=05nelsonm
POM_DEVELOPER_NAME=Matthew Nelson
POM_DEVELOPER_URL=https://github.com/05nelsonm/

VERSION_NAME=0.2.1-SNAPSHOT
VERSION_NAME=0.2.1
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
Expand Down

0 comments on commit 8d4304e

Please sign in to comment.