Skip to content

Commit

Permalink
remove erroneous @KmpComponentCreator annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Jun 12, 2024
1 parent 56aa199 commit 3d4d374
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.7.1] 2024-06-12

### Fixed
- Removed erroneous `@KmpComponentCreator` annotation.

## [0.7.0] 2024-06-12

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ repositories {
}
dependencies {
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.7.0")
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.7.1")
}
```

Expand Down
10 changes: 5 additions & 5 deletions docs/multiplatform.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Add the runtime dependency in commonMain
sourceSets {
commonMain {
dependencies {
implementation("me.tatarka.inject:kotlin-inject-runtime-kmp:0.7.0")
implementation("me.tatarka.inject:kotlin-inject-runtime-kmp:0.7.1")
}
}
}
Expand All @@ -67,10 +67,10 @@ dependencies {
kspCommonMainMetadata(libs.kotlinInject)

// 2. Configure code generation into each KMP target source set
kspAndroid("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0")
kspIosX64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0")
kspIosArm64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0")
kspIosSimulatorArm64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.0")
kspAndroid("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1")
kspIosX64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1")
kspIosArm64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1")
kspIosSimulatorArm64("me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.1")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,3 @@ annotation class Assisted

@Target(ANNOTATION_CLASS)
annotation class Qualifier

@Target(FUNCTION)
annotation class KmpComponentCreator

0 comments on commit 3d4d374

Please sign in to comment.