Commit b29bbab 1 parent 6e5c029 commit b29bbab Copy full SHA for b29bbab
File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ Unreleased]
8
+ ## [ 0.6.3] 2023-09-02
9
+
10
+ ### Fixed
11
+ - Fixed scoped assisted injection enforcement. It was incorrectly using the component scope instead of the scope of the
12
+ assisted class or provides method.
9
13
10
14
## [ 0.6.2] 2023-08-28
11
15
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ repositories {
64
64
}
65
65
66
66
dependencies {
67
- ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.2 ")
68
- implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.2 ")
67
+ ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3 ")
68
+ implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.3 ")
69
69
}
70
70
```
71
71
@@ -78,8 +78,8 @@ plugins {
78
78
}
79
79
80
80
dependencies {
81
- kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.6.2 ")
82
- implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.2 ")
81
+ kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.6.3 ")
82
+ implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.3 ")
83
83
}
84
84
```
85
85
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotlin-inject = " 0.6.3-SNAPSHOT "
2
+ kotlin-inject = " 0.6.3"
3
3
kotlin = " 1.9.0"
4
4
ksp = " 1.9.0-1.0.11"
5
5
kotlinpoet = " 1.14.2"
You can’t perform that action at this time.
0 commit comments