From 140e54983b41b76eeea42a293e3848e556023530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=91=E6=88=9F?= Date: Sun, 7 Nov 2021 11:07:39 +0800 Subject: [PATCH] release v0.7.0 --- demo/android-demo/app/build.gradle | 2 +- demo/java-demo/build.gradle | 4 ++-- demo/java-demo/pom.xml | 2 +- demo/kotlin-demo/build.gradle.kts | 4 ++-- demo/kotlin-demo/pom.xml | 2 +- demo/spock-demo/build.gradle | 4 ++-- demo/spock-demo/pom.xml | 2 +- docs/en-us/doc/setup.md | 6 +++--- docs/zh-cn/doc/setup.md | 6 +++--- testable-agent/pom.xml | 2 +- testable-all/pom.xml | 2 +- testable-core/pom.xml | 2 +- testable-maven-plugin/pom.xml | 2 +- testable-parent/pom.xml | 4 ++-- testable-processor/pom.xml | 2 +- 15 files changed, 23 insertions(+), 23 deletions(-) diff --git a/demo/android-demo/app/build.gradle b/demo/android-demo/app/build.gradle index 69fc019..9be7bd4 100644 --- a/demo/android-demo/app/build.gradle +++ b/demo/android-demo/app/build.gradle @@ -49,7 +49,7 @@ dependencies { testImplementation 'androidx.test:runner:1.4.0-alpha05' testImplementation 'junit:junit:4.+' testImplementation 'org.robolectric:robolectric:4.5.1' - testImplementation 'com.alibaba.testable:testable-all:0.6.10' + testImplementation 'com.alibaba.testable:testable-all:0.7.0' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' } \ No newline at end of file diff --git a/demo/java-demo/build.gradle b/demo/java-demo/build.gradle index 6af5cf3..3827a08 100644 --- a/demo/java-demo/build.gradle +++ b/demo/java-demo/build.gradle @@ -13,8 +13,8 @@ repositories { dependencies { testImplementation('org.junit.jupiter:junit-jupiter:5.6.2') - testImplementation('com.alibaba.testable:testable-all:0.6.10') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.6.10') + testImplementation('com.alibaba.testable:testable-all:0.7.0') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.7.0') } tasks.withType(JavaCompile) { diff --git a/demo/java-demo/pom.xml b/demo/java-demo/pom.xml index 51e6d73..1a3334b 100644 --- a/demo/java-demo/pom.xml +++ b/demo/java-demo/pom.xml @@ -12,7 +12,7 @@ 1.8 1.8 5.6.2 - 0.6.10 + 0.7.0 diff --git a/demo/kotlin-demo/build.gradle.kts b/demo/kotlin-demo/build.gradle.kts index 8b28fc7..25d2762 100644 --- a/demo/kotlin-demo/build.gradle.kts +++ b/demo/kotlin-demo/build.gradle.kts @@ -17,8 +17,8 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") testImplementation("org.junit.jupiter:junit-jupiter:5.6.2") - testImplementation("com.alibaba.testable:testable-all:0.6.10") - testAnnotationProcessor("com.alibaba.testable:testable-processor:0.6.10") + testImplementation("com.alibaba.testable:testable-all:0.7.0") + testAnnotationProcessor("com.alibaba.testable:testable-processor:0.7.0") } tasks.withType { diff --git a/demo/kotlin-demo/pom.xml b/demo/kotlin-demo/pom.xml index 014c1d0..74f15c7 100644 --- a/demo/kotlin-demo/pom.xml +++ b/demo/kotlin-demo/pom.xml @@ -14,7 +14,7 @@ 1.8 1.8 5.6.2 - 0.6.10 + 0.7.0 diff --git a/demo/spock-demo/build.gradle b/demo/spock-demo/build.gradle index 108ce42..c69d0ac 100644 --- a/demo/spock-demo/build.gradle +++ b/demo/spock-demo/build.gradle @@ -14,8 +14,8 @@ repositories { dependencies { testImplementation 'org.codehaus.groovy:groovy-all:3.0.7' testImplementation 'org.spockframework:spock-core:2.0-M5-groovy-3.0' - testImplementation('com.alibaba.testable:testable-all:0.6.10') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.6.10') + testImplementation('com.alibaba.testable:testable-all:0.7.0') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.7.0') } tasks.withType(JavaCompile) { diff --git a/demo/spock-demo/pom.xml b/demo/spock-demo/pom.xml index 1771b8d..bca758f 100644 --- a/demo/spock-demo/pom.xml +++ b/demo/spock-demo/pom.xml @@ -12,7 +12,7 @@ 1.8 1.8 1.8 - 0.6.10 + 0.7.0 diff --git a/docs/en-us/doc/setup.md b/docs/en-us/doc/setup.md index 0f5cfb0..5d8dcb2 100644 --- a/docs/en-us/doc/setup.md +++ b/docs/en-us/doc/setup.md @@ -16,7 +16,7 @@ It is recommended to add a `property` field that identifies the TestableMock ver ```xml - 0.6.10 + 0.7.0 ``` @@ -63,8 +63,8 @@ Add dependence of `TestableMock` in `build.gradle` file: ```groovy dependencies { - testImplementation('com.alibaba.testable:testable-all:0.6.10') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.6.10') + testImplementation('com.alibaba.testable:testable-all:0.7.0') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.7.0') } ``` diff --git a/docs/zh-cn/doc/setup.md b/docs/zh-cn/doc/setup.md index b870507..178f0df 100644 --- a/docs/zh-cn/doc/setup.md +++ b/docs/zh-cn/doc/setup.md @@ -16,7 +16,7 @@ ```xml - 0.6.10 + 0.7.0 ``` @@ -63,8 +63,8 @@ ```groovy dependencies { - testImplementation('com.alibaba.testable:testable-all:0.6.10') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.6.10') + testImplementation('com.alibaba.testable:testable-all:0.7.0') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.7.0') } ``` diff --git a/testable-agent/pom.xml b/testable-agent/pom.xml index 4e4a8d7..4235e24 100755 --- a/testable-agent/pom.xml +++ b/testable-agent/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 ../testable-parent testable-agent diff --git a/testable-all/pom.xml b/testable-all/pom.xml index fa82bf7..0a5e5fa 100644 --- a/testable-all/pom.xml +++ b/testable-all/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 ../testable-parent testable-all diff --git a/testable-core/pom.xml b/testable-core/pom.xml index 0512ecb..81ca563 100644 --- a/testable-core/pom.xml +++ b/testable-core/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 ../testable-parent testable-core diff --git a/testable-maven-plugin/pom.xml b/testable-maven-plugin/pom.xml index 2b1a637..ab00959 100644 --- a/testable-maven-plugin/pom.xml +++ b/testable-maven-plugin/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 ../testable-parent testable-maven-plugin diff --git a/testable-parent/pom.xml b/testable-parent/pom.xml index e061ce3..3c5683a 100644 --- a/testable-parent/pom.xml +++ b/testable-parent/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 pom testable-parent Unit test enhancement toolkit @@ -42,7 +42,7 @@ 1.6 1.6.8 3.6.0 - 0.6.10 + 0.7.0 diff --git a/testable-processor/pom.xml b/testable-processor/pom.xml index 6839304..3195c41 100644 --- a/testable-processor/pom.xml +++ b/testable-processor/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.6.10 + 0.7.0 ../testable-parent testable-processor