Skip to content

Commit

Permalink
Prepare 0.1.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Dec 26, 2023
1 parent bf944b1 commit dc19ed9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## Version 0.1.7 (2023-12-26)
- Fixes the option `nonSimulatorSourceSets` which had `iOS`, `tvOS`, `watchOS`
`X64` targets inheriting from it (`X64` targets are simulators) [[#40]][pr-40]
- Deprecates `nonSimulatorSourceSets` in favor of `useNonSimulatorSourceSets`
- Adds `useSimulatorSourceSets` option which does the same thing as
`useNonSimulatorSourceSets`, but puts simulators on `{ios/tvos/watchos}Simulator{Main/Test}`

## Version 0.1.6 (2023-12-13)
- Update dependencies:
- AGP -> `8.2.0`
Expand Down Expand Up @@ -80,3 +87,4 @@
[pr-19]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/19
[pr-24]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/24
[pr-35]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/35
[pr-40]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/40
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.1.6")
id("io.matthewnelson.kmp.configuration") version("0.1.7")
}
```

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.1.6'
id 'io.matthewnelson.kmp.configuration' version '0.1.7'
}
```

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.1.6")
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.1.7")
}
}
```
Expand Down Expand Up @@ -424,7 +424,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.6'
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.7'
}
}
```
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.1.7-SNAPSHOT
VERSION_NAME=0.1.7
# 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 dc19ed9

Please sign in to comment.