File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
kotlin-inject-runtime/src/commonMain/kotlin/me/tatarka/inject/annotations Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased]
8+ ## [ 0.7.1] 2024-06-12
9+
10+ ### Fixed
11+ - Removed erroneous ` @KmpComponentCreator ` annotation.
912
1013## [ 0.7.0] 2024-06-12
1114
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ repositories {
6464}
6565
6666dependencies {
67- ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0 ")
68- implementation("me.tatarka.inject:kotlin-inject-runtime:0.7.0 ")
67+ ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1 ")
68+ implementation("me.tatarka.inject:kotlin-inject-runtime:0.7.1 ")
6969}
7070```
7171
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Add the runtime dependency in commonMain
4040sourceSets {
4141 commonMain {
4242 dependencies {
43- implementation(" me.tatarka.inject:kotlin-inject-runtime-kmp:0.7.0 " )
43+ implementation(" me.tatarka.inject:kotlin-inject-runtime-kmp:0.7.1 " )
4444 }
4545 }
4646}
@@ -67,10 +67,10 @@ dependencies {
6767 kspCommonMainMetadata(libs.kotlinInject)
6868
6969 // 2. Configure code generation into each KMP target source set
70- kspAndroid(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0 " )
71- kspIosX64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0 " )
72- kspIosArm64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0 " )
73- kspIosSimulatorArm64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0 " )
70+ kspAndroid(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1 " )
71+ kspIosX64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1 " )
72+ kspIosArm64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1 " )
73+ kspIosSimulatorArm64(" me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1 " )
7474}
7575```
7676
Original file line number Diff line number Diff line change @@ -30,6 +30,3 @@ annotation class Assisted
3030
3131@Target(ANNOTATION_CLASS )
3232annotation class Qualifier
33-
34- @Target(FUNCTION )
35- annotation class KmpComponentCreator
You can’t perform that action at this time.
0 commit comments