diff --git a/CHANGE_LOG.md b/CHANGE_LOG.md
index 7360944..5c64253 100644
--- a/CHANGE_LOG.md
+++ b/CHANGE_LOG.md
@@ -392,4 +392,10 @@
| 序号 | 变更类型 | 说明 | 时间 | 备注 |
|:---|:-----|----------------|:--------------------|:--------------|
| 1 | A | 内置支持多个单词标签实现策略 | 2024-12-22 14:08:20 | 强化单词标签能力,方便复用 |
-| 2 | O | 升级 heaven 依赖 | 2024-12-22 14:08:20 | |
\ No newline at end of file
+| 2 | O | 升级 heaven 依赖 | 2024-12-22 14:08:20 | |
+
+# release_0.24.1
+
+| 序号 | 变更类型 | 说明 | 时间 | 备注 |
+|:---|:-----|------------|:------------------|:---------------|
+| 1 | F | 删除时添加同步锁优化 | 2025-2-2 15:30:26 | 涉及到接口调整 PR-100 |
\ No newline at end of file
diff --git a/README.md b/README.md
index 737598e..bd74554 100644
--- a/README.md
+++ b/README.md
@@ -66,6 +66,10 @@ v0.24.0 开始内置支持对敏感词的分类细化,不过工作量比较大
- 初步内置实现单词标签,丰富单词标签内置策略
+### V0.24.1
+
+- 删除时统一添加同步锁 sync
+
## 更多资料
### 敏感词控台
@@ -104,7 +108,7 @@ v0.24.0 开始内置支持对敏感词的分类细化,不过工作量比较大
com.github.houbb
sensitive-word
- 0.24.0
+ 0.24.1
```
diff --git a/pom.xml b/pom.xml
index 15fc986..6767341 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.github.houbb
sensitive-word
- 0.24.0
+ 0.24.1
diff --git a/release.bat b/release.bat
index 88a1dcf..8ab7049 100644
--- a/release.bat
+++ b/release.bat
@@ -10,7 +10,7 @@ ECHO "============================= RELEASE START..."
:: 版本号信息(需要手动指定)
:::: 旧版本名称
-SET version=0.24.0
+SET version=0.24.1
:::: 新版本名称
SET newVersion=0.25.0
:::: 组织名称
diff --git a/src/main/java/com/github/houbb/sensitive/word/support/data/AbstractWordData.java b/src/main/java/com/github/houbb/sensitive/word/support/data/AbstractWordData.java
index ae1874d..ffb06dc 100644
--- a/src/main/java/com/github/houbb/sensitive/word/support/data/AbstractWordData.java
+++ b/src/main/java/com/github/houbb/sensitive/word/support/data/AbstractWordData.java
@@ -30,7 +30,7 @@ public abstract class AbstractWordData implements IWordData {
/**
* 删除敏感词
- * @param collection
+ * @param collection 集合
*/
protected abstract void doRemoveWord(Collection collection);