release branch 0.16.1

This commit is contained in:
binbin.hou
2024-04-26 18:00:29 +08:00
parent 9da60cbe79
commit 57bcd0a8ce
5 changed files with 13 additions and 7 deletions

View File

@@ -302,5 +302,11 @@
# release_0.16.0
| 序号 | 变更类型 | 说明 | 时间 | 备注 |
|:---|:-----|----------------------|:-------------------|:-------------------------------------------------|
| 1 | F | 支持资源的释放,如 andriod 场景 | 2024-4-26 21:02:25 | https://github.com/houbb/sensitive-word/issues/53 |
|:---|:-----|----------------------|:-------------------|:-------------------------------------------------------|
| 1 | A | 支持资源的释放,如 andriod 场景 | 2024-4-26 21:02:25 | 废弃版本,https://github.com/houbb/sensitive-word/issues/53 |
# release_0.16.1
| 序号 | 变更类型 | 说明 | 时间 | 备注 |
|:---|:-----|----------------------|:-------------------|:----------------------------------------------------------|
| 1 | F | 支持资源的释放,如 andriod 场景 | 2024-4-26 21:02:25 | 修正未调用问题https://github.com/houbb/sensitive-word/issues/53 |

View File

@@ -452,7 +452,7 @@ Assert.assertTrue(wordBs.contains(text));
## 内存的释放
有时候我们需要释放内存,可以如下:
v0.16.1 开始支持,有时候我们需要释放内存,可以如下:
> [关于内存回收问题](https://github.com/houbb/sensitive-word/issues/53)

View File

@@ -6,7 +6,7 @@
<groupId>com.github.houbb</groupId>
<artifactId>sensitive-word</artifactId>
<version>0.16.0</version>
<version>0.16.1</version>
<properties>
<!--============================== All Plugins START ==============================-->

View File

@@ -10,7 +10,7 @@ ECHO "============================= RELEASE START..."
:: 版本号信息(需要手动指定)
:::: 旧版本名称
SET version=0.16.0
SET version=0.16.1
:::: 新版本名称
SET newVersion=0.17.0
:::: 组织名称

View File

@@ -575,7 +575,7 @@ public class SensitiveWordBs implements ISensitiveWordDestroy {
@Override
public void destroy() {
this.wordData.destroy();
}
//------------------------------------------------------------------------------------ 公开方法 END