Skip to content

Commit d55dee2

Browse files
sullistschuchortdev
authored andcommitted
kotlin 1.3.72
1 parent 7768158 commit d55dee2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3.70`
112+
- Current `kotlin-compiler-embeddable` version: `1.3.72`
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

build.gradle

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

44
repositories {
55
mavenCentral()
@@ -15,7 +15,7 @@ buildscript {
1515

1616
plugins {
1717
id 'java'
18-
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
18+
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
1919
}
2020

2121
apply plugin: 'kotlin'
@@ -59,12 +59,12 @@ dependencies {
5959

6060
// This dependency is only needed as a "sample" compiler plugin to test that
6161
// running compiler plugins passed via the pluginClasspath CLI option works
62-
testRuntime "org.jetbrains.kotlin:kotlin-scripting-compiler:1.3.70"
62+
testRuntime "org.jetbrains.kotlin:kotlin-scripting-compiler:1.3.72"
6363

6464
// The Kotlin compiler should be near the end of the list because its .jar file includes
6565
// an obsolete version of Guava
66-
implementation "org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.70"
67-
implementation "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.70"
66+
implementation "org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.72"
67+
implementation "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:1.3.72"
6868
}
6969

7070
compileKotlin {

src/test/kotlin/com/tschuchort/compiletesting/KotlinCompilationTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ class KotlinCompilationTests {
632632
fun `detects the plugin provided for compilation via pluginClasspaths property`() {
633633
val result = defaultCompilerConfig().apply {
634634
sources = listOf(SourceFile.kotlin("kSource.kt", "class KSource"))
635-
pluginClasspaths = listOf(classpathOf("kotlin-scripting-compiler-1.3.70"))
635+
pluginClasspaths = listOf(classpathOf("kotlin-scripting-compiler-1.3.72"))
636636
}.compile()
637637

638638
assertThat(result.exitCode).isEqualTo(ExitCode.OK)

0 commit comments

Comments
 (0)