Skip to content

Commit

Permalink
Prepare release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed May 31, 2021
1 parent d2add02 commit 1338233
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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).

## [0.3.4] - 2021-05-30

### Fixed
- Fix metata parsing issue with kapt on kotlin 1.5.0
- Fix declaring function injection in another module in ksp

### Changed
- Updated kotlin to 1.5.0
- Updated ksp to alpha10

## [0.3.3] - 2021-04-20

### Added
Expand Down Expand Up @@ -139,4 +149,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Throw error when parent component is missing val instead of generating incorrect code.

## [0.1.0] - 2020-09-17
- Initial Release
- Initial Release
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ val repo = appComponent.repo

```groovy
plugins {
id("org.jetbrains.kotlin.jvm") version "1.4.30"
id("org.jetbrains.kotlin.kapt") version "1.4.30"
id("org.jetbrains.kotlin.jvm") version "1.5.0"
id("org.jetbrains.kotlin.kapt") version "1.5.0"
}
dependencies {
kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.3.3")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.3")
kapt("me.tatarka.inject:kotlin-inject-compiler-kapt:0.3.4")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.4")
}
```

Expand All @@ -68,8 +68,8 @@ pluginManagement {

```groovy
plugins {
id("org.jetbrains.kotlin.jvm") version "1.4.32"
id("com.google.devtools.ksp") version "1.4.32-1.0.0-alpha08"
id("org.jetbrains.kotlin.jvm") version "1.5.0"
id("com.google.devtools.ksp") version "1.5.0-1.0.0-alpha10"
}
repositories {
Expand All @@ -78,8 +78,8 @@ repositories {
}
dependencies {
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.3.3")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.3")
ksp("me.tatarka.inject:kotlin-inject-compiler-ksp:0.3.4")
implementation("me.tatarka.inject:kotlin-inject-runtime:0.3.4")
}
```

Expand Down Expand Up @@ -453,4 +453,4 @@ You can find additional docs on specific use-cases in the [docs](docs) folder.

## Samples

You can find various samples [here](https://github.com/evant/kotlin-inject-samples)
You can find various samples [here](https://github.com/evant/kotlin-inject-samples)
4 changes: 2 additions & 2 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'maven-publish'
apply plugin: 'de.marcphilipp.nexus-publish'

group = 'me.tatarka.inject'
version = '0.3.4-SNAPSHOT'
version = '0.3.4'

task sourcesJar(type: Jar) {
from sourceSets.main.allJava
Expand Down Expand Up @@ -64,4 +64,4 @@ publishing {
signing {
required { project.findProperty('signing.keyId') != null }
sign publishing.publications.lib
}
}

0 comments on commit 1338233

Please sign in to comment.