Skip to content

Commit 52bd2ef

Browse files
committed
Change version - 1.5.21
1 parent 38a150b commit 52bd2ef

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ___
3939
## Getting started
4040

4141
**Note**, currently we support the following Reflekt and Kotlin versions:
42-
`1.5.30`, `1.5.20`, `1.5.10`
42+
`1.5.30`, `1.5.21`, `1.5.20`, `1.5.10`
4343

4444
Reflekt uses Gradle. If you have a Gradle project, you only need to do three things.
4545

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ group = "io.reflekt"
1111
*
1212
* Also, you should change the version in two places in the build.gradle.kts file in the example project
1313
* */
14-
version = "1.5.20"
14+
version = "1.5.21"
1515

1616
plugins {
1717
id("tanvd.kosogor") version "1.0.12" apply true
18-
kotlin("jvm") version "1.5.20" apply true
18+
kotlin("jvm") version "1.5.21" apply true
1919
id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
2020
`maven-publish`
21-
kotlin("kapt") version "1.5.20" apply true
21+
kotlin("kapt") version "1.5.21" apply true
2222
}
2323

2424
allprojects {

examples/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ version = rootProject.version
66

77
plugins {
88
id("tanvd.kosogor") version "1.0.10" apply true
9-
id("io.reflekt") version "1.5.20" apply true
10-
kotlin("jvm") version "1.5.20" apply true
9+
id("io.reflekt") version "1.5.21" apply true
10+
kotlin("jvm") version "1.5.21" apply true
1111
}
1212

1313
allprojects {
@@ -27,7 +27,7 @@ allprojects {
2727
}
2828

2929
dependencies {
30-
implementation("io.reflekt", "reflekt-dsl", "1.5.20")
30+
implementation("io.reflekt", "reflekt-dsl", "1.5.21")
3131
implementation("com.github.gumtreediff", "core", "2.1.2")
3232
}
3333

reflekt-core/src/main/kotlin/io/reflekt/util/Util.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object Util {
1616
* Just needs to be consistent with the artifactId in reflekt-plugin build.gradle.kts#publishJar
1717
*/
1818
const val GRADLE_ARTIFACT_ID = "reflekt-plugin"
19-
const val VERSION = "1.5.20"
19+
const val VERSION = "1.5.21"
2020

2121
val ENABLED_OPTION_INFO = MyCliOption(
2222
name = "enabled",

reflekt-plugin/src/test/kotlin/io/reflekt/plugin/analysis/AnalysisSetupTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class AnalysisSetupTest {
1515
private const val WINDOWS_USER_PROFILE = "USERPROFILE"
1616

1717
// We should use a const here since we can not get it from the project
18-
fun getReflektProjectJars(version: String = "1.5.20"): Set<File> {
18+
fun getReflektProjectJars(version: String = "1.5.21"): Set<File> {
1919
val baseReflektPath = "${getMavenLocalPath()}/io/reflekt"
2020
val reflektNames = listOf("gradle-plugin", "reflekt-core", "reflekt-dsl")
2121
return reflektNames.map {

0 commit comments

Comments
 (0)