Skip to content

Commit e1a3956

Browse files
committed
Bump version to 5.0.0
1 parent 2b70527 commit e1a3956

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

Ext/Accessibility/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For more information about _Accessibility Checking_, please see https://develope
1818

1919
```groovy
2020
plugins {
21-
id("dev.testify") version "4.0.0" apply false
21+
id("dev.testify") version "5.0.0" apply false
2222
}
2323
```
2424

@@ -29,7 +29,7 @@ Ensure that `mavenCentral()` is available to both `pluginManagement` and `depend
2929
**Application build.gradle**
3030
```groovy
3131
dependencies {
32-
androidTestImplementation "dev.testify:testify-accessibility:4.0.0"
32+
androidTestImplementation "dev.testify:testify-accessibility:5.0.0"
3333
}
3434
```
3535

Ext/Compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Easily create screenshot tests for `@Composable` functions.
1212

1313
```groovy
1414
plugins {
15-
id("dev.testify") version "4.0.0" apply false
15+
id("dev.testify") version "5.0.0" apply false
1616
}
1717
```
1818

@@ -24,7 +24,7 @@ Ensure that `mavenCentral()` is available to both `pluginManagement` and `depend
2424
**Application build.gradle**
2525
```groovy
2626
dependencies {
27-
androidTestImplementation "dev.testify:testify-compose:4.0.0"
27+
androidTestImplementation "dev.testify:testify-compose:5.0.0"
2828
androidTestImplementation "androidx.test:rules:1.5.0"
2929
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
3030
}

Ext/Fullscreen/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can set a comparison tolerance using [ScreenshotRule.setExactness](../../Lib
2020

2121
```groovy
2222
plugins {
23-
id("dev.testify") version "4.0.0" apply false
23+
id("dev.testify") version "5.0.0" apply false
2424
}
2525
```
2626

@@ -31,7 +31,7 @@ Ensure that `mavenCentral()` is available to both `pluginManagement` and `depend
3131
**Application build.gradle**
3232
```groovy
3333
dependencies {
34-
androidTestImplementation "dev.testify:testify-fullscreen:4.0.0"
34+
androidTestImplementation "dev.testify:testify-fullscreen:5.0.0"
3535
}
3636
```
3737

Ext/Ktx/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Testify — Android Screenshot Testing — Kotlin Extensions
22

3-
<a href="https://search.maven.org/artifact/dev.testify/testify-kts"><img alt="Maven Central" src="https://img.shields.io/maven-central/v/dev.testify/testify-ktx?color=%236e40ed&label=dev.testify%3Atestify-ktx"/></a>
3+
<a href="https://search.maven.org/artifact/dev.testify/testify-ktx"><img alt="Maven Central" src="https://img.shields.io/maven-central/v/dev.testify/testify-ktx?color=%236e40ed&label=dev.testify%3Atestify-ktx"/></a>
44

55
**Kotlin extensions for Android Testify, providing more idiomatic and helper APIs to work with screenshot testing in Android.**
66

@@ -18,7 +18,7 @@ Why Use Testify KTX?
1818

1919
```groovy
2020
plugins {
21-
id("dev.testify") version "3.2.3" apply false
21+
id("dev.testify") version "5.0.0" apply false
2222
}
2323
```
2424

@@ -29,7 +29,7 @@ Ensure that `mavenCentral()` is available to both `pluginManagement` and `depend
2929
**Application build.gradle**
3030
```groovy
3131
dependencies {
32-
androidTestImplementation "dev.testify:testify-ktx:3.2.3"
32+
androidTestImplementation "dev.testify:testify-ktx:5.0.0"
3333
}
3434
```
3535

Plugins/Gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To set a dependency reference to the Testify plugin:
1414

1515
```groovy
1616
plugins {
17-
id("dev.testify") version "4.0.0" apply false
17+
id("dev.testify") version "5.0.0" apply false
1818
}
1919
```
2020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Testify plugin:
6767

6868
```groovy
6969
plugins {
70-
id("dev.testify") version "4.0.0" apply false
70+
id("dev.testify") version "5.0.0" apply false
7171
}
7272
```
7373

docs/docs/extensions/accessibility/1-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In order to use the Android Testify Accessibility Checks extension, you must fir
1010

1111
```groovy
1212
plugins {
13-
id("dev.testify") version "4.0.0" apply false
13+
id("dev.testify") version "5.0.0" apply false
1414
}
1515
```
1616

@@ -25,6 +25,6 @@ The Android Testify Accessibility Checks extension is packaged as a separate art
2525
**Application build.gradle**
2626
```groovy
2727
dependencies {
28-
androidTestImplementation "dev.testify:testify-accessibility:4.0.0"
28+
androidTestImplementation "dev.testify:testify-accessibility:5.0.0"
2929
}
3030
```

docs/docs/extensions/compose/1-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In order to use the Android Testify Compose extension, you must first configure
1010

1111
```groovy
1212
plugins {
13-
id("dev.testify") version "4.0.0" apply false
13+
id("dev.testify") version "5.0.0" apply false
1414
}
1515
```
1616

@@ -26,7 +26,7 @@ The Android Testify Compose extension is packaged as a separate artifact. You mu
2626
**Application build.gradle**
2727
```groovy
2828
dependencies {
29-
androidTestImplementation "dev.testify:testify-compose:4.0.0"
29+
androidTestImplementation "dev.testify:testify-compose:5.0.0"
3030
androidTestImplementation "androidx.test:rules:1.10.0"
3131
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
3232
}

docs/docs/extensions/fullscreen/1-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In order to use the Android Testify Fullscreen Capture Method extension, you mus
1010

1111
```groovy
1212
plugins {
13-
id("dev.testify") version "4.0.0" apply false
13+
id("dev.testify") version "5.0.0" apply false
1414
}
1515
```
1616

@@ -26,6 +26,6 @@ The Android Testify Fullscreen Capture Method extension is packaged as a separat
2626
**Application build.gradle**
2727
```groovy
2828
dependencies {
29-
androidTestImplementation "dev.testify:testify-fullscreen:4.0.0"
29+
androidTestImplementation "dev.testify:testify-fullscreen:5.0.0"
3030
}
3131
```

docs/docs/get-started/1-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Before building your screenshot test with Testify, make sure to set a dependency
66

77
```groovy
88
plugins {
9-
id("dev.testify") version "4.0.0" apply false
9+
id("dev.testify") version "5.0.0" apply false
1010
}
1111
```
1212

0 commit comments

Comments
 (0)