Skip to content

Commit

Permalink
Change version - 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nbirillo committed Sep 17, 2021
1 parent 52bd2ef commit 655bd26
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ___
## Getting started

**Note**, currently we support the following Reflekt and Kotlin versions:
`1.5.30`, `1.5.21`, `1.5.20`, `1.5.10`
`1.5.30`, `1.5.21`, `1.5.20`, `1.5.10`, `1.5.0`

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

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ group = "io.reflekt"
*
* Also, you should change the version in two places in the build.gradle.kts file in the example project
* */
version = "1.5.21"
version = "1.5.0"

plugins {
id("tanvd.kosogor") version "1.0.12" apply true
kotlin("jvm") version "1.5.21" apply true
kotlin("jvm") version "1.5.0" apply true
id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
`maven-publish`
kotlin("kapt") version "1.5.21" apply true
kotlin("kapt") version "1.5.0" apply true
}

allprojects {
Expand Down
6 changes: 3 additions & 3 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ version = rootProject.version

plugins {
id("tanvd.kosogor") version "1.0.10" apply true
id("io.reflekt") version "1.5.21" apply true
kotlin("jvm") version "1.5.21" apply true
id("io.reflekt") version "1.5.0" apply true
kotlin("jvm") version "1.5.0" apply true
}

allprojects {
Expand All @@ -27,7 +27,7 @@ allprojects {
}

dependencies {
implementation("io.reflekt", "reflekt-dsl", "1.5.21")
implementation("io.reflekt", "reflekt-dsl", "1.5.0")
implementation("com.github.gumtreediff", "core", "2.1.2")
}

Expand Down
2 changes: 1 addition & 1 deletion reflekt-core/src/main/kotlin/io/reflekt/util/Util.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ object Util {
* Just needs to be consistent with the artifactId in reflekt-plugin build.gradle.kts#publishJar
*/
const val GRADLE_ARTIFACT_ID = "reflekt-plugin"
const val VERSION = "1.5.21"
const val VERSION = "1.5.0"

val ENABLED_OPTION_INFO = MyCliOption(
name = "enabled",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class AnalysisSetupTest {
private const val WINDOWS_USER_PROFILE = "USERPROFILE"

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

0 comments on commit 655bd26

Please sign in to comment.