Skip to content

Commit 6595615

Browse files
1.0.0 clean up
1 parent 6290bcb commit 6595615

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A native Kotlin Compiler Plugin for [Koin](https://insert-koin.io/) dependency i
77
```kotlin
88
// build.gradle.kts
99
plugins {
10-
id("io.insert-koin.compiler.plugin") version "1.0.0-RC1"
10+
id("io.insert-koin.compiler.plugin") version "1.0.0"
1111
}
1212

1313
dependencies {

docs/CODE_WALKTHROUGH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Koin Compiler Plugin — Complete Code Walkthrough
22

3-
> **Version:** 1.0.0-RC2 | **Date:** 2026-05-11
3+
> **Version:** 1.0.0 | **Date:** 2026-05-19
44
>
55
> Line-by-line debugging reference for the Koin maintainer.
66
> Every file, every method, every data flow.

docs/MIGRATION_FROM_KSP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ksp {
8484
```kotlin
8585
// build.gradle.kts
8686
plugins {
87-
id("io.insert-koin.compiler.plugin") version "1.0.0-RC1"
87+
id("io.insert-koin.compiler.plugin") version "1.0.0"
8888
}
8989

9090
dependencies {
@@ -329,7 +329,7 @@ Just apply the plugin:
329329
```kotlin
330330
// feature/build.gradle.kts
331331
plugins {
332-
id("io.insert-koin.compiler.plugin") version "1.0.0-RC1"
332+
id("io.insert-koin.compiler.plugin") version "1.0.0"
333333
}
334334
```
335335

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kotlin.code.style=official
22

33
# Plugin version
4-
pluginVersion=1.0.0-GA1
4+
pluginVersion=1.0.0
55

66
# Gradle
77
org.gradle.daemon=true

playground-apps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ app-*/
4141

4242
## Stack
4343

44-
- **Koin** 4.2 + **Compiler Plugin** 0.4.1
44+
- **Koin** 4.2 + **Compiler Plugin** 1.0.0
4545
- Kotlin 2.3.20 (K2)
4646
- Jetpack Compose
4747
- Room, DataStore, WorkManager

playground-apps/app-annotations/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
agp = "8.13.2"
33
kotlin = "2.3.20"
44
koin = "4.2.1"
5-
koin-plugin = "1.0.0-GA1"
5+
koin-plugin = "1.0.0"
66
composeBom = "2026.03.00"
77
navigation = "2.9.7"
88
room = "2.8.4"

playground-apps/app-dsl/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
agp = "8.13.2"
33
kotlin = "2.3.20"
44
koin = "4.2.1"
5-
koin-plugin = "1.0.0-GA1"
5+
koin-plugin = "1.0.0"
66
composeBom = "2026.03.00"
77
navigation = "2.9.7"
88
room = "2.8.4"

test-apps/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
kotlin = "2.3.20"
33
koin = "4.2.1"
4-
koin-plugin = "1.0.0-GA1"
4+
koin-plugin = "1.0.0"
55

66
[libraries]
77
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }

0 commit comments

Comments
 (0)