diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2f4f4dd65..11ed08ba6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# 更新日志
+## 2.5.0
+
+- 新增 `` filterOption 属性支持自定义搜索 [#704](https://github.com/XiaoMi/hiui/issues/704)
+- 修复 `` 刷新后 value 不能正确显示的问题 [#667](https://github.com/XiaoMi/hiui/issues/667)
+- 修复 `` pageSizeOptions 写法兼容性问题 [#703](https://github.com/XiaoMi/hiui/issues/703)
+- 修复 `` 第一张图向前翻页跳转不正确的问题 [#696](https://github.com/XiaoMi/hiui/issues/696)
+- 修复 兼容属性 legacy 造成的组件污染问题 [#708](https://github.com/XiaoMi/hiui/issues/708)
+- 修复 `` 传入字符串值时控制台抛出的警告问题 [#709](https://github.com/XiaoMi/hiui/issues/709)
+- 修复 `
` 列冻结情况下容器宽度大于可滚动宽度的展示不正确的问题 [#718](https://github.com/XiaoMi/hiui/issues/718)
+
## 2.4.1
- 修复 `` 多选失效的问题 [#699](https://github.com/XiaoMi/hiui/issues/699)
diff --git a/components/date-picker/style/index.scss b/components/date-picker/style/index.scss
index b50ae17b6..907d5b0b2 100644
--- a/components/date-picker/style/index.scss
+++ b/components/date-picker/style/index.scss
@@ -360,6 +360,7 @@ $basic-color: #4284f5 !default;
p {
cursor: pointer;
+ margin: 21px 0;
}
}
diff --git a/docs/zh-CN/components/changelog.mdx b/docs/zh-CN/components/changelog.mdx
index 770403d06..1e08a3664 100644
--- a/docs/zh-CN/components/changelog.mdx
+++ b/docs/zh-CN/components/changelog.mdx
@@ -1,5 +1,15 @@
# 更新日志
+## 2.5.0
+
+- 新增 `` filterOption 属性支持自定义搜索 [#704](https://github.com/XiaoMi/hiui/issues/704)
+- 修复 `` 刷新后 value 不能正确显示的问题 [#667](https://github.com/XiaoMi/hiui/issues/667)
+- 修复 `` pageSizeOptions 写法兼容性问题 [#703](https://github.com/XiaoMi/hiui/issues/703)
+- 修复 `` 第一张图向前翻页跳转不正确的问题 [#696](https://github.com/XiaoMi/hiui/issues/696)
+- 修复 兼容属性 legacy 造成的组件污染问题 [#708](https://github.com/XiaoMi/hiui/issues/708)
+- 修复 `` 传入字符串值时控制台抛出的警告问题 [#709](https://github.com/XiaoMi/hiui/issues/709)
+- 修复 `` 列冻结情况下容器宽度大于可滚动宽度的展示不正确的问题 [#718](https://github.com/XiaoMi/hiui/issues/718)
+
## 2.4.1
- 修复 `` 多选失效的问题 [#699](https://github.com/XiaoMi/hiui/issues/699)
diff --git a/package.json b/package.json
index f5745f199..a2ab446da 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@hi-ui/hiui",
- "version": "2.4.1",
+ "version": "2.5.0",
"description": "HIUI for React",
"scripts": {
"test": "node_modules/.bin/standard && node_modules/.bin/stylelint --config .stylelintrc 'components/**/*.scss'",