Skip to content

Commit

Permalink
prepare release v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Sep 2, 2023
1 parent 6e5c029 commit b29bbab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 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.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")
}
```

Expand All @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit b29bbab

Please sign in to comment.