File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
9
## Version 0.3.0 (2024-06-15)
4
10
- Update dependencies [[ #53 ]] [ pr-53 ] :
5
11
- KGP -> ` 2.0.0 `
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ plugins {
342
342
id(" com.android.library" ) version(" x.x.x" ) apply (false )
343
343
344
344
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 " )
346
346
}
347
347
```
348
348
@@ -362,7 +362,7 @@ plugins {
362
362
id 'com.android.library' version 'x.x.x' apply false
363
363
364
364
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 '
366
366
}
367
367
```
368
368
@@ -384,7 +384,7 @@ buildscript {
384
384
dependencies {
385
385
// kotlin gradle
386
386
// 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 " )
388
388
}
389
389
}
390
390
```
@@ -416,7 +416,7 @@ buildscript {
416
416
mavenCentral()
417
417
}
418
418
dependencies {
419
- classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0 '
419
+ classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.1 '
420
420
}
421
421
}
422
422
```
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ POM_DEVELOPER_ID=05nelsonm
22
22
POM_DEVELOPER_NAME =Matthew Nelson
23
23
POM_DEVELOPER_URL =https://github.com/05nelsonm/
24
24
25
- VERSION_NAME =0.3.1-SNAPSHOT
25
+ VERSION_NAME =0.3.1
26
26
# 0.1.0-alpha01 = 00 01 00 11
27
27
# 0.1.0-beta01 = 00 01 00 21
28
28
# 0.1.0-rc01 = 00 01 00 31
You can’t perform that action at this time.
0 commit comments