Skip to content

Commit adaac12

Browse files
committed
Prepare release 0.3.6
1 parent 8930b1e commit adaac12

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.6] - 2021-07-16
8+
9+
### Changed
10+
- Updated kotlin to 1.5.20
11+
- Experimental kotlin js support
12+
13+
### Fixed
14+
- Fix generated code for @Inject functions with a receiver
15+
ex: `@Inject fun Foo.bar() = ...`
16+
- Fix not using the typealias for function return types
17+
718
## [0.3.5] - 2021-06-02
819

920
### Changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ val repo = appComponent.repo
3939

4040
```groovy
4141
plugins {
42-
id("org.jetbrains.kotlin.jvm") version "1.5.10"
43-
id("org.jetbrains.kotlin.kapt") version "1.5.10"
42+
id("org.jetbrains.kotlin.jvm") version "1.5.20"
43+
id("org.jetbrains.kotlin.kapt") version "1.5.20"
4444
}
4545
4646
dependencies {
47-
kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.3.5")
48-
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.5")
47+
kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.3.6")
48+
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.6")
4949
}
5050
```
5151

@@ -68,8 +68,8 @@ pluginManagement {
6868

6969
```groovy
7070
plugins {
71-
id("org.jetbrains.kotlin.jvm") version "1.5.10"
72-
id("com.google.devtools.ksp") version "1.5.10-1.0.0-beta01"
71+
id("org.jetbrains.kotlin.jvm") version "1.5.21"
72+
id("com.google.devtools.ksp") version "1.5.21-1.0.0-beta05"
7373
}
7474
7575
repositories {
@@ -78,8 +78,8 @@ repositories {
7878
}
7979
8080
dependencies {
81-
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.3.5")
82-
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.5")
81+
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.3.6")
82+
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.6")
8383
}
8484
```
8585

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object Versions {
2-
const val kotlinInject = "0.3.6-SNAPSHOT"
2+
const val kotlinInject = "0.3.6"
33
const val kotlin = "1.5.20"
44
const val ksp = "1.5.20-1.0.0-beta03"
5-
}
5+
}

0 commit comments

Comments
 (0)