bump to v0.4.2

This commit is contained in:
金戟 2020-12-15 19:19:58 +08:00
parent 28bde0b85a
commit bf4c263d93
12 changed files with 21 additions and 16 deletions
demo
docs/zh-cn/doc
testable-agent
testable-all
testable-core
testable-maven-plugin
testable-parent
testable-processor

View File

@ -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 {

View File

@ -12,7 +12,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>5.6.2</junit.version>
<testable.version>0.4.2-SNAPSHOT</testable.version>
<testable.version>0.4.2</testable.version>
</properties>
<dependencies>

View File

@ -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<KotlinCompile> {

View File

@ -14,7 +14,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>5.6.2</junit.version>
<testable.version>0.4.2-SNAPSHOT</testable.version>
<testable.version>0.4.2</testable.version>
</properties>
<dependencies>

View File

@ -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

View File

@ -15,7 +15,7 @@
```xml
<properties>
<testable.version>0.4.1</testable.version>
<testable.version>0.4.2</testable.version>
</properties>
```
@ -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')
}
```

View File

@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<relativePath>../testable-parent</relativePath>
</parent>
<artifactId>testable-agent</artifactId>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<relativePath>../testable-parent</relativePath>
</parent>
<artifactId>testable-all</artifactId>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<relativePath>../testable-parent</relativePath>
</parent>
<artifactId>testable-core</artifactId>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<relativePath>../testable-parent</relativePath>
</parent>
<artifactId>testable-maven-plugin</artifactId>

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<packaging>pom</packaging>
<name>testable-parent</name>
<description>Unit test enhancement toolkit</description>
@ -42,7 +42,7 @@
<plugin.gpg.version>1.6</plugin.gpg.version>
<plugin.staging.version>1.6.8</plugin.staging.version>
<plugin.maven.version>3.6.0</plugin.maven.version>
<testable.version>0.4.2-SNAPSHOT</testable.version>
<testable.version>0.4.2</testable.version>
</properties>
<profiles>

View File

@ -6,7 +6,7 @@
<parent>
<groupId>com.alibaba.testable</groupId>
<artifactId>testable-parent</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<relativePath>../testable-parent</relativePath>
</parent>
<artifactId>testable-processor</artifactId>