Skip to content

Commit 72969fe

Browse files
committed
Prepare 0.1.6 release
1 parent 1831d82 commit 72969fe

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

CHANGELOG.md

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

3+
## Version 0.1.6 (2023-12-13)
4+
- Update dependencies:
5+
- AGP -> `8.1.4`
6+
- KGP -> `1.9.20`
7+
- Gradle Wrapper -> `8.4`
8+
- Adds a new `Options` container with an initial purpose of enabling an
9+
option for configuring additional source sets for `iOS`, `tvOS`, and
10+
`watchOS` non-simulator targets to inherit from. [[#35]][pr-35]
11+
312
## Version 0.1.5 (2023-11-20)
413
- Update dependencies:
514
- AGP -> `8.1.4`
@@ -70,3 +79,4 @@
7079

7180
[pr-19]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/19
7281
[pr-24]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/24
82+
[pr-35]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/35

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@ kmpConfiguration {
333333
<details open>
334334
<summary>Kotlin</summary>
335335

336+
<!-- TAG_VERSION -->
337+
336338
```kotlin
337339
plugins {
338340
// If you are using androidApp (as depicted in the above example)
@@ -342,7 +344,7 @@ plugins {
342344
id("com.android.library") version("x.x.x") apply(false)
343345

344346
id("org.jetbrains.kotlin.multiplatform") version("x.x.x") apply(false)
345-
id("io.matthewnelson.kmp.configuration") version("0.1.5")
347+
id("io.matthewnelson.kmp.configuration") version("0.1.6")
346348
}
347349
```
348350

@@ -351,6 +353,8 @@ plugins {
351353
<details>
352354
<summary>Groovy</summary>
353355

356+
<!-- TAG_VERSION -->
357+
354358
```groovy
355359
plugins {
356360
// If you are using androidApp (as depicted in the above example)
@@ -360,7 +364,7 @@ plugins {
360364
id 'com.android.library' version 'x.x.x' apply false
361365
362366
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
363-
id 'io.matthewnelson.kmp.configuration' version '0.1.5'
367+
id 'io.matthewnelson.kmp.configuration' version '0.1.6'
364368
}
365369
```
366370

@@ -370,6 +374,8 @@ plugins {
370374
<details open>
371375
<summary>Kotlin</summary>
372376

377+
<!-- TAG_VERSION -->
378+
373379
top-level build file:
374380
```kotlin
375381
buildscript {
@@ -380,7 +386,7 @@ buildscript {
380386
dependencies {
381387
// kotlin gradle
382388
// android gradle (if you have an android target)
383-
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.1.5")
389+
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.1.6")
384390
}
385391
}
386392
```
@@ -403,14 +409,16 @@ kmpConfiguration {
403409
<details>
404410
<summary>Groovy</summary>
405411

412+
<!-- TAG_VERSION -->
413+
406414
top-level build file:
407415
```groovy
408416
buildscript {
409417
repositories {
410418
mavenCentral()
411419
}
412420
dependencies {
413-
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.5'
421+
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.6'
414422
}
415423
}
416424
```

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.1.6-SNAPSHOT
25+
VERSION_NAME=0.1.6
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)