Skip to content

Commit 1c1d86b

Browse files
committed
Prepare 0.3.1 release
1 parent dd6e3e7 commit 1c1d86b

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## Version 0.3.1 (2024-08-29)
4+
- Fixes `pluginIds` functionality to collect all configured id's and
5+
apply them before configuring anything.
6+
- Adds `OptionContainer.useUniqueModuleNames` to autoconfigure metadata
7+
and jvm/android compilerOption `moduleName` with a truly unique value.
8+
39
## Version 0.3.0 (2024-06-15)
410
- Update dependencies [[#53]][pr-53]:
511
- KGP -> `2.0.0`

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ plugins {
342342
id("com.android.library") version("x.x.x") apply(false)
343343

344344
id("org.jetbrains.kotlin.multiplatform") version("x.x.x") apply(false)
345-
id("io.matthewnelson.kmp.configuration") version("0.3.0")
345+
id("io.matthewnelson.kmp.configuration") version("0.3.1")
346346
}
347347
```
348348

@@ -362,7 +362,7 @@ plugins {
362362
id 'com.android.library' version 'x.x.x' apply false
363363
364364
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
365-
id 'io.matthewnelson.kmp.configuration' version '0.3.0'
365+
id 'io.matthewnelson.kmp.configuration' version '0.3.1'
366366
}
367367
```
368368

@@ -384,7 +384,7 @@ buildscript {
384384
dependencies {
385385
// kotlin gradle
386386
// android gradle (if you have an android target)
387-
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0")
387+
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.3.1")
388388
}
389389
}
390390
```
@@ -416,7 +416,7 @@ buildscript {
416416
mavenCentral()
417417
}
418418
dependencies {
419-
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0'
419+
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.1'
420420
}
421421
}
422422
```

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ POM_DEVELOPER_ID=05nelsonm
2222
POM_DEVELOPER_NAME=Matthew Nelson
2323
POM_DEVELOPER_URL=https://github.com/05nelsonm/
2424

25-
VERSION_NAME=0.3.1-SNAPSHOT
25+
VERSION_NAME=0.3.1
2626
# 0.1.0-alpha01 = 00 01 00 11
2727
# 0.1.0-beta01 = 00 01 00 21
2828
# 0.1.0-rc01 = 00 01 00 31

0 commit comments

Comments
 (0)