Skip to content

Commit

Permalink
Prepare 0.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Aug 30, 2024
1 parent 494ebf7 commit a6b9ad8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# CHANGELOG

## Version 0.3.2 (2024-08-29)
- Fixes `moduleName` for Jvm/Android to replace character `:` with `_`
in order to prevent Windows from blowing up.

## Version 0.3.1 (2024-08-29)
- Fixes `pluginIds` functionality to collect all configured id's and
apply them before configuring anything.
- Adds `OptionContainer.useUniqueModuleNames` to autoconfigure metadata
and jvm/android compilerOption `moduleName` with a truly unique value.
and Jvm/Android compilerOption `moduleName` with a truly unique value.

## Version 0.3.0 (2024-06-15)
- Update dependencies [[#53]][pr-53]:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,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.3.1")
id("io.matthewnelson.kmp.configuration") version("0.3.2")
}
```

Expand All @@ -362,7 +362,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.3.1'
id 'io.matthewnelson.kmp.configuration' version '0.3.2'
}
```

Expand All @@ -384,7 +384,7 @@ buildscript {
dependencies {
// kotlin gradle
// android gradle (if you have an android target)
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.3.1")
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.3.2")
}
}
```
Expand Down Expand Up @@ -416,7 +416,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.1'
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.2'
}
}
```
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.3.2-SNAPSHOT
VERSION_NAME=0.3.2
# 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 a6b9ad8

Please sign in to comment.