Skip to content

Commit 40d1e48

Browse files
committed
Prepare 0.3.0 release
1 parent ef438e0 commit 40d1e48

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

CHANGELOG.md

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

3+
## Version 0.3.0 (2024-06-15)
4+
- Update dependencies [[#53]][pr-53]:
5+
- KGP -> `2.0.0`
6+
37
## Version 0.2.2 (2024-06-15)
48
- Update dependencies [[#49]][pr-49]:
59
- AGP -> `8.5.0`
@@ -115,3 +119,4 @@
115119
[pr-45]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/45
116120
[pr-49]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/49
117121
[pr-50]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/50
122+
[pr-53]: https://github.com/05nelsonm/gradle-kmp-configuration-plugin/pull/53

README.md

+4-12
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@ A Gradle Plugin for setting up Kotlin Multiplatform projects.
55
2. Enables passing of build targets via command line to control what gets
66
configured (great for CI).
77

8-
## Requirements
9-
10-
Minimum supported versions:
11-
- Gradle: `6.7`
12-
- Kotlin Gradle Plugin: `1.6.0`
13-
- Android Gradle Plugin: `4.1.0`
14-
- Java: `11`
15-
168
## Hierarchical Source Set Structure
179

1810
Will automatically configure project with a hierarchical source set structure
@@ -350,7 +342,7 @@ plugins {
350342
id("com.android.library") version("x.x.x") apply(false)
351343

352344
id("org.jetbrains.kotlin.multiplatform") version("x.x.x") apply(false)
353-
id("io.matthewnelson.kmp.configuration") version("0.2.2")
345+
id("io.matthewnelson.kmp.configuration") version("0.3.0")
354346
}
355347
```
356348

@@ -370,7 +362,7 @@ plugins {
370362
id 'com.android.library' version 'x.x.x' apply false
371363
372364
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
373-
id 'io.matthewnelson.kmp.configuration' version '0.2.2'
365+
id 'io.matthewnelson.kmp.configuration' version '0.3.0'
374366
}
375367
```
376368

@@ -392,7 +384,7 @@ buildscript {
392384
dependencies {
393385
// kotlin gradle
394386
// android gradle (if you have an android target)
395-
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.2.2")
387+
classpath("io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0")
396388
}
397389
}
398390
```
@@ -424,7 +416,7 @@ buildscript {
424416
mavenCentral()
425417
}
426418
dependencies {
427-
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.2.2'
419+
classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0'
428420
}
429421
}
430422
```

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.0-SNAPSHOT
25+
VERSION_NAME=0.3.0
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)