diff --git a/CHANGELOG.md b/CHANGELOG.md
index d74e0b4b4..db857215e 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,33 @@
# 🚀Changelog
+-------------------------------------------------------------------------------------------------------------
+# 5.8.23(2023-11-12)
+
+### 🐣新特性
+* 【json 】 改进TemporalAccessorSerializer支持dayOfMonth和month枚举名(issue#I82AM8@Gitee)
+* 【core 】 新增ProxySocketFactory
+* 【http 】 UserAgent增加百度浏览器识别(issue#I847JY@Gitee)
+* 【core 】 ReflectUtil.getFieldsValue增加Filter重载(pr#1090@Gitee)
+* 【core 】 Snowflake增加方法:根据传入时间戳,计算ID起终点(pr#1096@Gitee)
+* 【core 】 PathUtil增加loopFiles重载,可选是否追踪软链(issue#3353@Github)
+
+### 🐞Bug修复
+* 【cron 】 修复Cron表达式range解析错误问题(issue#I82CSH@Gitee)
+* 【core 】 修复VersionComparator在极端数据排序时候违反了自反性问题(issue#I81N3H@Gitee)
+* 【json 】 修复JSONStrFormatter:format函数对于转义符号处理逻辑错误问题(issue#I84V6I@Gitee)
+* 【core 】 修复特定情况下BiMap覆盖Value后,仍能通过旧Value查询到Key问题(issue#I88R5M@Gitee)
+* 【core 】 修复aop的afterException无法生效问题(issue#3329@Github)
+* 【core 】 修复TypeUtil.getClass方法强转报错问题(pr#1092@Github)
+* 【core 】 修复DataSize.parse(size)不支持空格问题(issue#I88Z4Z@Gitee)
+* 【http 】 修复SimpleServer在添加的HttpFilter中有获取请求参数时报错问题(issue#3343@Github)
+* 【http 】 修复options请求无响应体问题
+* 【core 】 ImgUtil的sliceByRowsAndCols背景无法透明问题(issue#3347@Github)
+* 【core 】 修复ClassUtil#scanJar未正确关闭文件问题(issue#3361@Github)
+* 【db 】 修复Column.getDigit返回值错误问题(issue#3370@Github)
+* 【core 】 修复合成注解在并发环境无法保证正确缓存属性值的问题(pr#1097@Gitee)
+* 【core 】 修复CollectorUtil.reduceListMap与collectors.groupby一起使用时出现与预期不符问题(pr#1102@Gitee)
+
-------------------------------------------------------------------------------------------------------------
# 5.8.22(2023-09-13)
diff --git a/README-EN.md b/README-EN.md
index 1c583342b..12c571594 100755
--- a/README-EN.md
+++ b/README-EN.md
@@ -46,6 +46,13 @@
-------------------------------------------------------------------------------
+
+
+
+
+
+-------------------------------------------------------------------------------
+
[**🌎中文说明**](README.md)
-------------------------------------------------------------------------------
@@ -144,18 +151,18 @@ We provide the T-Shirt and Sweater with Hutool Logo, please visit the shop:
cn.hutool
hutool-all
- 5.8.22
+ 5.8.23
```
### 🍐Gradle
```
-implementation 'cn.hutool:hutool-all:5.8.22'
+implementation 'cn.hutool:hutool-all:5.8.23'
```
## 📥Download
-- [Maven Repo](https://repo1.maven.org/maven2/cn/hutool/hutool-all/5.8.22/)
+- [Maven Repo](https://repo1.maven.org/maven2/cn/hutool/hutool-all/5.8.23/)
> 🔔️note:
> Hutool 5.x supports JDK8+ and is not tested on Android platforms, and cannot guarantee that all tool classes or tool methods are available.
@@ -208,10 +215,3 @@ Hutool welcomes anyone to contribute code to Hutool, but the author suffers from
## ⭐Star Hutool
[](https://starchart.cc/dromara/hutool)
-
-## 📌WeChat Official Account
-
-
-

-

-
diff --git a/README.md b/README.md
index 621c1cf89..c3df8cd0b 100755
--- a/README.md
+++ b/README.md
@@ -46,6 +46,13 @@
-------------------------------------------------------------------------------
+
+
+
+
+
+-------------------------------------------------------------------------------
+
[**🌎English Documentation**](README-EN.md)
-------------------------------------------------------------------------------
@@ -137,20 +144,20 @@ Hutool = Hu + tool,是原公司项目底层代码剥离后的开源库,“Hu
cn.hutool
hutool-all
- 5.8.22
+ 5.8.23
```
### 🍐Gradle
```
-implementation 'cn.hutool:hutool-all:5.8.22'
+implementation 'cn.hutool:hutool-all:5.8.23'
```
### 📥下载jar
点击以下链接,下载`hutool-all-X.X.X.jar`即可:
-- [Maven中央库](https://repo1.maven.org/maven2/cn/hutool/hutool-all/5.8.22/)
+- [Maven中央库](https://repo1.maven.org/maven2/cn/hutool/hutool-all/5.8.23/)
> 🔔️注意
> Hutool 5.x支持JDK8+,对Android平台没有测试,不能保证所有工具类或工具方法可用。
@@ -211,9 +218,3 @@ Hutool欢迎任何人为Hutool添砖加瓦,贡献代码,不过维护者是
## ⭐Star Hutool
[](https://starchart.cc/dromara/hutool)
-
-## 📌 知识星球
-
-
-

-
diff --git a/bin/javadoc.sh b/bin/javadoc.sh
index b9aaa3914..38eb2b683 100755
--- a/bin/javadoc.sh
+++ b/bin/javadoc.sh
@@ -1,3 +1,6 @@
#!/bin/bash
-exec mvn javadoc:javadoc
+#exec mvn javadoc:javadoc
+
+# 多模块聚合文档,生成在target/site/apidocs
+exec mvn javadoc:aggregate
diff --git a/bin/version.txt b/bin/version.txt
index 8050bf9ff..e1ff3f5ba 100755
--- a/bin/version.txt
+++ b/bin/version.txt
@@ -1 +1 @@
-5.8.22
+5.8.23
diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html
index a283ef666..a5ddd5640 100644
--- a/docs/apidocs/index.html
+++ b/docs/apidocs/index.html
@@ -2,32 +2,77 @@
-
-
-
- Hutool API Docs
-
+
+
+ Document
+
+
+
-
-
-

-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
\ No newline at end of file
+