Skip to content

Commit

Permalink
Release version 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonlee committed Dec 21, 2021
1 parent fa5ba85 commit 3211275
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The best practise of using Booster is integrating the specific module to solve t
```groovy
buildscript {
ext.booster_version = '4.2.1'
ext.booster_version = '4.3.0'
repositories {
google()
mavenCentral()
Expand Down Expand Up @@ -122,7 +122,7 @@ The `plugins` DSL also supported since Booster *3.0.0*
```groovy
plugins {
id 'com.didiglobal.booster' version '4.2.1'
id 'com.didiglobal.booster' version '4.3.0'
}
```

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

### Unit Test

- [booster-test-asm](./booster-test-asm) - Support running unit test with ASM based transformer

```groovy
classpath "com.didiglobal.booster:booster-task-asm:$booster_version"
```

- [booster-test-javassist](./booster-test-javassist) - Support running unit test with Javassist based transformer


```groovy
classpath "com.didiglobal.booster:booster-task-javassist:$booster_version"
```

## Samples | 示例

- [transformer-with-asm](https://github.com/boostersamples/transformer-with-asm)
Expand Down
5 changes: 5 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v4.3.0

- Support running local unit test with transformer
- Add collector API for multi-round transform

## v4.2.0

- Add Android stub APIs
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ allprojects { project ->
apply plugin: 'maven-publish'

group = 'com.didiglobal.booster'
version = '4.2.1'
version = '4.3.0'

repositories {
mavenLocal()
Expand Down

0 comments on commit 3211275

Please sign in to comment.