Skip to content

Commit b29bbab

Browse files
committed
prepare release v0.6.3
1 parent 6e5c029 commit b29bbab

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

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.
913

1014
## [0.6.2] 2023-08-28
1115

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ repositories {
6464
}
6565
6666
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")
6969
}
7070
```
7171

@@ -78,8 +78,8 @@ plugins {
7878
}
7979
8080
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")
8383
}
8484
```
8585

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlin-inject = "0.6.3-SNAPSHOT"
2+
kotlin-inject = "0.6.3"
33
kotlin = "1.9.0"
44
ksp = "1.9.0-1.0.11"
55
kotlinpoet = "1.14.2"

0 commit comments

Comments
 (0)