Skip to content

Commit 8690cc8

Browse files
committed
Release 1.2.11
1 parent 2c150da commit 8690cc8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Add dependency to your module's `build.gradle` file:
9797
```Groovy
9898
dependencies {
9999
// ...
100-
implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.2.10'
100+
implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.2.11'
101101
}
102102
```
103103

@@ -109,7 +109,7 @@ Kotlin-Compile-Testing is compatible with all _local_ compiler versions. It does
109109

110110
However, if your project or any of its dependencies depend directly on compiler artifacts such as `kotlin-compiler-embeddable` or `kotlin-annotation-processing-embeddable` then they have to be the same version as the one used by Kotlin-Compile-Testing or there will be a transitive dependency conflict.
111111

112-
- Current `kotlin-compiler-embeddable` version: `1.4.0`
112+
- Current `kotlin-compiler-embeddable` version: `1.4.10`
113113

114114
Because the internal APIs of the Kotlin compiler often change between versions, we can only support one `kotlin-compiler-embeddable` version at a time.
115115

@@ -121,7 +121,7 @@ To test KSP processors, you need to use the KSP dependency:
121121

122122
```Groovy
123123
dependencies {
124-
implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.2.10'
124+
implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.2.11'
125125
}
126126
```
127127

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.4.0'
2+
ext.kotlin_version = '1.4.10'
33

44
repositories {
55
mavenCentral()
@@ -27,7 +27,7 @@ allprojects {
2727
group 'com.github.tschuchortdev'
2828

2929
buildscript {
30-
ext.kotlin_version = '1.4.0'
30+
ext.kotlin_version = '1.4.10'
3131

3232
repositories {
3333
mavenCentral()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ kotlin.code.style=official
22
kotlin.incremental=false
33

44
GROUP=com.github.tschuchortdev
5-
VERSION_NAME=1.2.10
5+
VERSION_NAME=1.2.11
66
POM_DESCRIPTION=A library that enables testing of Kotlin annotation processors, compiler plugins and code generation.
77
POM_INCEPTION_YEAR=2019
88
POM_URL=https://github.com/tschuchortdev/kotlin-compile-testing

ksp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
buildscript {
3-
ext.ksp_version='1.4.0-rc-dev-experimental-20200731'
3+
ext.ksp_version='1.4.0-rc-dev-experimental-20200828'
44
}
55

66
dependencies {

0 commit comments

Comments
 (0)