Skip to content

Commit

Permalink
Prepare release 5.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrovgs committed Apr 14, 2021
1 parent 0002350 commit 75a14e7
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Modify your root ``build.gradle`` file:
// ...
dependencies {
// ...
classpath 'com.karumi:shot:5.10.3'
classpath 'com.karumi:shot:5.10.4'
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/com/karumi/shot/domain/model.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ object Config {
val androidDependencyMode: FilePath = "androidTestImplementation"
val androidDependencyGroup: String = "com.karumi"
val androidDependencyName: String = "shot-android"
val androidDependencyVersion: String = "5.10.4-SNAPSHOT"
val androidDependencyVersion: String = "5.10.4"
val androidDependency: FilePath =
s"$androidDependencyGroup:$androidDependencyName:$androidDependencyVersion"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.scalatest.matchers._
class ConfigSpec extends AnyFlatSpec with should.Matchers {

"Config" should "use the screenshot tests library implemented by Facebook" in {
Config.androidDependency shouldBe "com.karumi:shot-android:5.10.4-SNAPSHOT"
Config.androidDependency shouldBe "com.karumi:shot-android:5.10.4"
}

it should "add the dependency using the androidTestImplementation mode" in {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=5.10.4-SNAPSHOT
VERSION_NAME=5.10.4
VERSION_CODE=501004
GROUP=com.karumi
POM_DESCRIPTION=Gradle plugin developed to facilitate screenshot testing for Android.
Expand Down
2 changes: 1 addition & 1 deletion shot-consumer-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-alpha12'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
}
}

Expand Down
2 changes: 1 addition & 1 deletion shot-consumer-flavors/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath "com.neenbedankt.gradle.plugins:android-apt:1.7"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
classpath "com.trevjonez.composer:plugin:1.0.0-rc08"
}
}
Expand Down
2 changes: 1 addition & 1 deletion shot-consumer-flavors/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:4.2.0-beta01"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
}
}

Expand Down
2 changes: 1 addition & 1 deletion shot-consumer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath "com.neenbedankt.gradle.plugins:android-apt:1.7"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
classpath "com.trevjonez.composer:plugin:1.0.0-rc08"
}
}
Expand Down
2 changes: 1 addition & 1 deletion shot-consumer/app2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath "com.neenbedankt.gradle.plugins:android-apt:1.7"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
classpath "com.trevjonez.composer:plugin:1.0.0-rc08"
}
}
Expand Down
2 changes: 1 addition & 1 deletion shot-consumer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:7.0.0-alpha01"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.karumi:shot:5.10.4-SNAPSHOT"
classpath "com.karumi:shot:5.10.4"
}
}

Expand Down

0 comments on commit 75a14e7

Please sign in to comment.