Skip to content

Commit 4f4e60b

Browse files
committed
Prepare for 2.0.0 release
1 parent 2f06149 commit 4f4e60b

File tree

11 files changed

+21
-15
lines changed

11 files changed

+21
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Testify Change Log
22

3+
## 2.0.0
4+
5+
Released without additional changes from 2.0.0-rc03.
6+
7+
---
8+
39
## 2.0.0-rc03
410

511
### Library

Ext/Accessibility/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ buildscript {
2121
mavenCentral()
2222
}
2323
dependencies {
24-
classpath "dev.testify:plugin:2.0.0-beta04"
24+
classpath "dev.testify:plugin:2.0.0"
2525
}
2626
}
2727
```
2828

2929
**Application build.gradle**
3030
```groovy
3131
dependencies {
32-
androidTestImplementation "dev.testify:testify-accessibility:2.0.0-beta04"
32+
androidTestImplementation "dev.testify:testify-accessibility:2.0.0"
3333
}
3434
```
3535

Ext/Compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ buildscript {
1515
mavenCentral()
1616
}
1717
dependencies {
18-
classpath "dev.testify:plugin:2.0.0-beta04"
18+
classpath "dev.testify:plugin:2.0.0"
1919
}
2020
}
2121
```
2222

2323
**Application build.gradle**
2424
```groovy
2525
dependencies {
26-
androidTestImplementation "dev.testify:testify-compose:2.0.0-beta04"
26+
androidTestImplementation "dev.testify:testify-compose:2.0.0"
2727
androidTestImplementation "androidx.test:rules:1.5.0"
2828
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
2929
}

Ext/Fullscreen/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ buildscript {
2323
mavenCentral()
2424
}
2525
dependencies {
26-
classpath "dev.testify:plugin:2.0.0-beta04"
26+
classpath "dev.testify:plugin:2.0.0"
2727
}
2828
}
2929
```
3030

3131
**Application build.gradle**
3232
```groovy
3333
dependencies {
34-
androidTestImplementation "dev.testify:testify-fullscreen:2.0.0-beta04"
34+
androidTestImplementation "dev.testify:testify-fullscreen:2.0.0"
3535
}
3636
```
3737

Plugins/Gradle/jar/Plugin-local.jar

0 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ buildscript {
7171
mavenCentral()
7272
}
7373
dependencies {
74-
classpath "dev.testify:plugin:2.0.0-beta04"
74+
classpath "dev.testify:plugin:2.0.0"
7575
}
7676
}
7777
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ buildscript {
3939
'mockk' : '1.13.5', // https://central.sonatype.com/artifact/io.mockk/mockk/1.13.4/versions
4040
'slf4j' : '2.0.6',
4141
'truth' : '1.1.5', // https://github.com/google/truth
42-
'testify' : '2.0.0-rc03', // https://github.com/ndtp/android-testify/releases
42+
'testify' : '2.0.0', // https://github.com/ndtp/android-testify/releases
4343
]
4444
coreVersions = [
4545
'compileSdk': 33,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
mavenCentral()
1414
}
1515
dependencies {
16-
classpath "dev.testify:plugin:2.0.0-beta04"
16+
classpath "dev.testify:plugin:2.0.0"
1717
}
1818
}
1919
```
@@ -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:2.0.0-beta04"
28+
androidTestImplementation "dev.testify:testify-accessibility:2.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
@@ -13,7 +13,7 @@ buildscript {
1313
mavenCentral()
1414
}
1515
dependencies {
16-
classpath "dev.testify:plugin:2.0.0-beta04"
16+
classpath "dev.testify:plugin:2.0.0"
1717
}
1818
}
1919
```
@@ -25,7 +25,7 @@ The Android Testify Compose extension is packaged as a separate artifact. You mu
2525
**Application build.gradle**
2626
```groovy
2727
dependencies {
28-
androidTestImplementation "dev.testify:testify-compose:2.0.0-beta04"
28+
androidTestImplementation "dev.testify:testify-compose:2.0.0"
2929
androidTestImplementation "androidx.test:rules:1.5.0"
3030
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
3131
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
mavenCentral()
1414
}
1515
dependencies {
16-
classpath "dev.testify:plugin:2.0.0-beta04"
16+
classpath "dev.testify:plugin:2.0.0"
1717
}
1818
}
1919
```
@@ -25,6 +25,6 @@ The Android Testify Fullscreen Capture Method extension is packaged as a separat
2525
**Application build.gradle**
2626
```groovy
2727
dependencies {
28-
androidTestImplementation "dev.testify:testify-fullscreen:2.0.0-beta04"
28+
androidTestImplementation "dev.testify:testify-fullscreen:2.0.0"
2929
}
3030
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
mavenCentral()
1010
}
1111
dependencies {
12-
classpath "dev.testify:plugin:2.0.0-beta04"
12+
classpath "dev.testify:plugin:2.0.0"
1313
}
1414
}
1515
```

0 commit comments

Comments
 (0)