Skip to content

Commit

Permalink
Prepare release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrovgs committed May 2, 2022
1 parent 640311f commit 8a0d177
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion AndroidConsumer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
maven { url uri('../../repo') }
}
dependencies {
classpath 'com.karumi.kotlinsnapshot:plugin:2.2.4-SNAPSHOT'
classpath 'com.karumi.kotlinsnapshot:plugin:2.3.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion KotlinConsumer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.karumi.kotlinsnapshot:plugin:2.2.4-SNAPSHOT"
classpath "com.karumi.kotlinsnapshot:plugin:2.3.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion SpringConsumer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java.sourceCompatibility = JavaVersion.VERSION_11

buildscript {
dependencies {
classpath("com.karumi.kotlinsnapshot:plugin:2.2.4-SNAPSHOT")
classpath("com.karumi.kotlinsnapshot:plugin:2.3.0")
}
repositories {
maven { url = uri("../repo") }
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.karumi.kotlinsnapshot'
version '2.2.4-SNAPSHOT'
version '2.3.0'

buildscript {
ext.kotlin_version = '1.3.21'
Expand Down
4 changes: 2 additions & 2 deletions core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ POM_NAME=core
POM_ARTIFACT_ID=core
POM_PACKAGING=jar

VERSION_NAME=2.2.4-SNAPSHOT
VERSION_CODE=020204
VERSION_NAME=2.3.0
VERSION_CODE=020300
GROUP=com.karumi.kotlinsnapshot

POM_DESCRIPTION=Snapshot Testing framework for Kotlin
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ POM_NAME=core
POM_ARTIFACT_ID=core
POM_PACKAGING=jar

VERSION_NAME=2.2.4-SNAPSHOT
VERSION_CODE=020204
VERSION_NAME=2.3.0
VERSION_CODE=020300
GROUP=com.karumi.kotlinsnapshot

POM_DESCRIPTION=Snapshot Testing framework for Kotlin
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.karumi.kotlinsnapshot'
version '2.2.4-SNAPSHOT'
version '2.3.0'

buildscript {
ext.kotlin_version = '1.3.21'
Expand Down
4 changes: 2 additions & 2 deletions plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ POM_NAME=plugin
POM_ARTIFACT_ID=plugin
POM_PACKAGING=jar

VERSION_NAME=2.2.4-SNAPSHOT
VERSION_CODE=020204
VERSION_NAME=2.3.0
VERSION_CODE=020300
GROUP=com.karumi.kotlinsnapshot

POM_DESCRIPTION=Snapshot Testing framework for Kotlin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ open class KotlinSnapshotPlugin : Plugin<Project> {
project.gradle.addListener(object : DependencyResolutionListener {
override fun beforeResolve(dependencies: ResolvableDependencies) {
val dependency = project.dependencies
.create("com.karumi.kotlinsnapshot:core:2.2.4-SNAPSHOT")
.create("com.karumi.kotlinsnapshot:core:2.3.0")
project.dependencies.add("testImplementation", dependency)
project.gradle.removeListener(this)
}
Expand Down

0 comments on commit 8a0d177

Please sign in to comment.