From bf4c263d93f913239b203d75afa65974501b9f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=91=E6=88=9F?= Date: Tue, 15 Dec 2020 19:19:58 +0800 Subject: [PATCH] bump to v0.4.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 +- docs/zh-cn/doc/release-note.md | 5 +++++ 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 +- 12 files changed, 21 insertions(+), 16 deletions(-) diff --git a/demo/java-demo/build.gradle b/demo/java-demo/build.gradle index e716a8b..e087fa7 100644 --- a/demo/java-demo/build.gradle +++ b/demo/java-demo/build.gradle @@ -12,8 +12,8 @@ repositories { dependencies { testImplementation('org.junit.jupiter:junit-jupiter:5.6.2') - testImplementation('com.alibaba.testable:testable-all:0.4.2-SNAPSHOT') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2-SNAPSHOT') + testImplementation('com.alibaba.testable:testable-all:0.4.2') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2') } test { diff --git a/demo/java-demo/pom.xml b/demo/java-demo/pom.xml index 09e3aea..4a6eb58 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.4.2-SNAPSHOT + 0.4.2 diff --git a/demo/kotlin-demo/build.gradle.kts b/demo/kotlin-demo/build.gradle.kts index d140094..f049b6c 100644 --- a/demo/kotlin-demo/build.gradle.kts +++ b/demo/kotlin-demo/build.gradle.kts @@ -16,8 +16,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.4.2-SNAPSHOT") - testAnnotationProcessor("com.alibaba.testable:testable-processor:0.4.2-SNAPSHOT") + testImplementation("com.alibaba.testable:testable-all:0.4.2") + testAnnotationProcessor("com.alibaba.testable:testable-processor:0.4.2") } tasks.withType { diff --git a/demo/kotlin-demo/pom.xml b/demo/kotlin-demo/pom.xml index ac2ced2..34524f5 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.4.2-SNAPSHOT + 0.4.2 diff --git a/docs/zh-cn/doc/release-note.md b/docs/zh-cn/doc/release-note.md index 6c794be..b03d06b 100644 --- a/docs/zh-cn/doc/release-note.md +++ b/docs/zh-cn/doc/release-note.md @@ -1,5 +1,10 @@ # Release Note +## 0.4.2 +- support change javaagent global log level via maven plugin +- fix an issue of duplicate test class injection +- fix an issue cause multiple method invocation mock fail + ## 0.4.1 - deprecate @TestableMock annotation, use @MockMethod and @MockConstructor instead diff --git a/docs/zh-cn/doc/setup.md b/docs/zh-cn/doc/setup.md index 6a0fe00..a56697e 100644 --- a/docs/zh-cn/doc/setup.md +++ b/docs/zh-cn/doc/setup.md @@ -15,7 +15,7 @@ ```xml - 0.4.1 + 0.4.2 ``` @@ -62,8 +62,8 @@ ```groovy dependencies { - testImplementation('com.alibaba.testable:testable-all:0.4.1') - testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.1') + testImplementation('com.alibaba.testable:testable-all:0.4.2') + testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.2') } ``` diff --git a/testable-agent/pom.xml b/testable-agent/pom.xml index d40ca88..106c813 100755 --- a/testable-agent/pom.xml +++ b/testable-agent/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 ../testable-parent testable-agent diff --git a/testable-all/pom.xml b/testable-all/pom.xml index 1b28d3e..2a79e21 100644 --- a/testable-all/pom.xml +++ b/testable-all/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 ../testable-parent testable-all diff --git a/testable-core/pom.xml b/testable-core/pom.xml index bdf273b..58f6c72 100644 --- a/testable-core/pom.xml +++ b/testable-core/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 ../testable-parent testable-core diff --git a/testable-maven-plugin/pom.xml b/testable-maven-plugin/pom.xml index bd5e8d7..0a26712 100644 --- a/testable-maven-plugin/pom.xml +++ b/testable-maven-plugin/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 ../testable-parent testable-maven-plugin diff --git a/testable-parent/pom.xml b/testable-parent/pom.xml index f7974ae..6901409 100644 --- a/testable-parent/pom.xml +++ b/testable-parent/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 pom testable-parent Unit test enhancement toolkit @@ -42,7 +42,7 @@ 1.6 1.6.8 3.6.0 - 0.4.2-SNAPSHOT + 0.4.2 diff --git a/testable-processor/pom.xml b/testable-processor/pom.xml index ef5ba81..febb42e 100644 --- a/testable-processor/pom.xml +++ b/testable-processor/pom.xml @@ -6,7 +6,7 @@ com.alibaba.testable testable-parent - 0.4.2-SNAPSHOT + 0.4.2 ../testable-parent testable-processor