Skip to content

Commit

Permalink
Prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Gutierrez committed Sep 3, 2018
1 parent 097d062 commit 8317f9a
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 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:0.3.0'
classpath 'com.karumi.kotlinsnapshot:plugin:0.4.0-SNAPSHOT'
}
}

Expand Down
4 changes: 2 additions & 2 deletions 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:0.3.0'
classpath 'com.karumi.kotlinsnapshot:plugin:0.4.0-SNAPSHOT'
}
}

Expand All @@ -15,7 +15,7 @@ plugins {
}

group 'com.karumi.kotlinsnapshot'
version '0.3.0'
version '0.4.0-SNAPSHOT'

apply plugin: 'com.karumi.kotlin-snapshot'

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add our Gradle Plugin to your ```build.gradle``` file:
mavenCentral()
}
dependencies {
classpath 'com.karumi.kotlinsnapshot:plugin:0.2.0'
classpath 'com.karumi.kotlinsnapshot:plugin:0.3.0'
}
}
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 '0.3.0'
version '0.4.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.2.10'
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=0.3.0
VERSION_CODE=000300
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_CODE=000400
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=0.3.0
VERSION_CODE=000300
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_CODE=000400
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 '0.3.0'
version '0.4.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.2.10'
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=0.3.0
VERSION_CODE=000300
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_CODE=000400
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 @@ -31,7 +31,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:0.3.0")
.create("com.karumi.kotlinsnapshot:core:0.4.0-SNAPSHOT")
project.dependencies.add("testImplementation", dependency)
project.gradle.removeListener(this)
}
Expand Down

0 comments on commit 8317f9a

Please sign in to comment.