diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a17eb6..a7682b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ 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.6.3] 2023-09-02 + +### Fixed +- Fixed scoped assisted injection enforcement. It was incorrectly using the component scope instead of the scope of the + assisted class or provides method. ## [0.6.2] 2023-08-28 diff --git a/README.md b/README.md index df6b7885..0fdc1f68 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ repositories { } dependencies { - ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.2") - implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.2") + ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.6.3") + implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.3") } ``` @@ -78,8 +78,8 @@ plugins { } dependencies { - kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.6.2") - implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.2") + kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.6.3") + implementation("me.tatarka.inject:kotlin-inject-runtime:0.6.3") } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2560acf0..feff47de 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -kotlin-inject = "0.6.3-SNAPSHOT" +kotlin-inject = "0.6.3" kotlin = "1.9.0" ksp = "1.9.0-1.0.11" kotlinpoet = "1.14.2"