Skip to content

Commit 3211275

Browse files
committed
Release version 4.3.0
1 parent fa5ba85 commit 3211275

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The best practise of using Booster is integrating the specific module to solve t
7474
7575
```groovy
7676
buildscript {
77-
ext.booster_version = '4.2.1'
77+
ext.booster_version = '4.3.0'
7878
repositories {
7979
google()
8080
mavenCentral()
@@ -122,7 +122,7 @@ The `plugins` DSL also supported since Booster *3.0.0*
122122
123123
```groovy
124124
plugins {
125-
id 'com.didiglobal.booster' version '4.2.1'
125+
id 'com.didiglobal.booster' version '4.3.0'
126126
}
127127
```
128128

@@ -292,6 +292,21 @@ Here are all the modules of Booster:
292292
classpath "com.didiglobal.booster:booster-task-list-shared-library:$booster_version"
293293
```
294294

295+
### Unit Test
296+
297+
- [booster-test-asm](./booster-test-asm) - Support running unit test with ASM based transformer
298+
299+
```groovy
300+
classpath "com.didiglobal.booster:booster-task-asm:$booster_version"
301+
```
302+
303+
- [booster-test-javassist](./booster-test-javassist) - Support running unit test with Javassist based transformer
304+
305+
306+
```groovy
307+
classpath "com.didiglobal.booster:booster-task-javassist:$booster_version"
308+
```
309+
295310
## Samples | 示例
296311

297312
- [transformer-with-asm](https://github.com/boostersamples/transformer-with-asm)

RELEASE-NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v4.3.0
2+
3+
- Support running local unit test with transformer
4+
- Add collector API for multi-round transform
5+
16
## v4.2.0
27

38
- Add Android stub APIs

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects { project ->
3131
apply plugin: 'maven-publish'
3232

3333
group = 'com.didiglobal.booster'
34-
version = '4.2.1'
34+
version = '4.3.0'
3535

3636
repositories {
3737
mavenLocal()

0 commit comments

Comments
 (0)