From a166351bb59ab83105edb0ad6addcda6367d238e Mon Sep 17 00:00:00 2001 From: johnsonlee Date: Sat, 2 Jul 2022 11:08:43 +0800 Subject: [PATCH] [skip ci] Update README & RELEASE-NOTES --- README.md | 4 ++-- RELEASE-NOTES.md | 16 +++++++++++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a31958901..e389264ab 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ The best practise of using Booster is integrating the specific module to solve t ```groovy buildscript { - ext.booster_version = '4.10.0' + ext.booster_version = '4.11.0' repositories { google() mavenCentral() @@ -124,7 +124,7 @@ The `plugins` DSL also supported since Booster *3.0.0* ```groovy plugins { - id 'com.didiglobal.booster' version '4.10.0' + id 'com.didiglobal.booster' version '4.11.0' } ``` diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 58da1415d..07dec16ef 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,13 @@ +## v4.11.0 + +- Grouping tasks into group `booster` +- Dependency acquisition enhancement +- Fix transform timing issue +- Add [booster-cha-asm](https://github.com/didi/booster/blob/v4.11.0/booster-cha-asm) to support ASM based CHA +- Improvement for [booster-task-analyser](https://github.com/didi/booster/blob/v4.11.0/booster-task-analyser) +- Load all classes of a composite class set before accessing +- Fix bug of resolving project dependencies + ## v4.10.0 - Improve ClassSet to avoid memory leaks @@ -13,20 +23,20 @@ - Fix [CVE-2020-15250] In JUnit4 from version 4.7 and before 4.13.1, the test rule TemporaryFolder contains a local information disclosure vulnerability - Fix variant artifacts acquiring - Fix integration tests -- Refactoring `booster-graph` to support grouping and render options +- Refactoring [booster-graph](https://github.com/didi/booster/blob/v4.9.0/booster-graph) to support grouping and render options ## v4.8.0 - Fix issue [#311](https://github.com/didi/booster/issues/311) - Add api `mergeNativeLibsTaskProvider` -- Add `booster-graph` to generate graph with `dot` +- Add [booster-graph](https://github.com/didi/booster/blob/v4.8.0/booster-graph) to generate graph with `dot` - Using deferred task instead of creating task directly - Reverse the edge direction of the task graph ## v4.7.0 - Add `DotGraph.visualize()` for graph visualization -- Add `booster-task-graph` for task graph visualization +- Add [booster-task-graph](https://github.com/didi/booster/blob/v4.7.0/booster-task-graph) for task graph visualization - Fix improper task dependencies - Fix issue [#304](https://github.com/didi/booster/issues/304): `ScheduledThreadPoolExecutor` transform bug