diff --git a/README.md b/README.md index 81a8a6b..2be6316 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,7 @@ `TestableMock`正在持续迭代演进,以下版本计划可能在开发过程中发生调整 - `0.6` 当前版本,正在开发中的功能包括: - - 支持全局参数配置Mock容器映射关系 [#105](https://github.com/alibaba/testable-mock/issues/105) - 支持Mock Lambada语句中的方法引用 [#36](https://github.com/alibaba/testable-mock/issues/36) - - 完善Mock功能的防代码重构机制 [#5](https://github.com/alibaba/testable-mock/issues/5) - 其他进行中的工作内容参考[Issue](https://github.com/alibaba/testable-mock/issues)清单 - `0.7` 主要计划包括: - 增加DAO层逻辑的单元测试辅助 [介绍](https://alibaba.github.io/testable-mock/#/zh-cn/doc/verify-sql) diff --git a/README_EN.md b/README_EN.md index f3c55a8..fe67878 100644 --- a/README_EN.md +++ b/README_EN.md @@ -12,7 +12,7 @@ Usage Document: https://alibaba.github.io/testable-mock/#/en-us/ `TestableMock` is still under heavy development, the following version plans may be adjusted during the iteration - `v0.6` it's the current version, refer to the [issue](https://github.com/alibaba/testable-mock/issues) list for the work in progress -- `v0.7` better anti-refactor support of mocking, allow quick mock all method in specified class +- `v0.7` better anti-refactoring support of mocking, allow quick mock all method in specified class - `v1.0` all functions are stable, a brand-new start ## Directory Structure diff --git a/docs/en-us/doc/release-note.md b/docs/en-us/doc/release-note.md index 97f7f8a..b423864 100644 --- a/docs/en-us/doc/release-note.md +++ b/docs/en-us/doc/release-note.md @@ -1,5 +1,10 @@ # Release Note +## 0.6.6 +- support global package path mapping for easier mocking code of 3rd packages +- complete mock target checking, improve resistance to code refactoring +- fix a log disorder issue of mock class handler + ## 0.6.5 - fix an issue cause `OmniConstructor` fail to handle classes like Date and BigDecimal - fix an issue of `PrivateAccessor` fail to invoke method with single array parameter diff --git a/docs/zh-cn/doc/release-note.md b/docs/zh-cn/doc/release-note.md index e85a34b..d191a05 100644 --- a/docs/zh-cn/doc/release-note.md +++ b/docs/zh-cn/doc/release-note.md @@ -1,5 +1,10 @@ # Release Note +## 0.6.6 +- 支持全局参数配置Mock容器的包路径映射,便于Mock三方包内的代码(issue-105) +- 实现Mock功能的防代码重构机制(issue-5) +- 解决Mock类的调试日志内容有时会错位的问题 + ## 0.6.5 - 修复`OmniConstructor`对某些系统类型的兼容问题(issue-145) - 修复`PrivateAccessor`无法调用仅有数组类型参数方法的问题(issue-152)