From f38abb243e54b472b85f5dc2d1c3504ca751b0b6 Mon Sep 17 00:00:00 2001 From: MadCcc Date: Mon, 27 Nov 2023 19:15:04 +0800 Subject: [PATCH] docs: 5.11.5 (#46104) * docs: 5.11.5 * chore: update --- CHANGELOG.en-US.md | 7 +++++++ CHANGELOG.zh-CN.md | 7 +++++++ package.json | 2 +- scripts/post-script.ts | 1 + 4 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 0bccd8420e..0d3a5a5acf 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -16,6 +16,13 @@ tag: vVERSION --- +## 5.11.5 + +`2023-11-27` + +- 🐞 MISC: Fix error in `dist` artifact. [#46103](https://github.com/ant-design/ant-design/pull/46103) [@MadCcc](https://github.com/MadCcc) +- 💄 Fix DatePicker style when disabled and hovered. [#45940](https://github.com/ant-design/ant-design/pull/45940) [@crazyair](https://github.com/crazyair) + ## 5.11.4 `2023-11-24` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 8d3756a2c5..2bcd53f592 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -16,6 +16,13 @@ tag: vVERSION --- +## 5.11.5 + +`2023-11-27` + +- 🐞 MISC: 修复打包 `dist` 产物错误。[#46103](https://github.com/ant-design/ant-design/pull/46103) [@MadCcc](https://github.com/MadCcc) +- 💄 修复 DatePicker 禁用状态下悬浮样式。[#45940](https://github.com/ant-design/ant-design/pull/45940) [@crazyair](https://github.com/crazyair) + ## 5.11.4 `2023-11-24` diff --git a/package.json b/package.json index ba711a3494..109d706c43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antd", - "version": "5.11.4", + "version": "5.11.5", "description": "An enterprise-class UI design language and React components implementation", "keywords": [ "ant", diff --git a/scripts/post-script.ts b/scripts/post-script.ts index d58f608ab0..082faa404f 100644 --- a/scripts/post-script.ts +++ b/scripts/post-script.ts @@ -51,6 +51,7 @@ const DEPRECIATED_VERSION = { '5.11.0': ['https://github.com/ant-design/ant-design/issues/45742'], '5.11.1': ['https://github.com/ant-design/ant-design/issues/45883'], '5.11.2': ['https://github.com/ant-design/ant-design/issues/46005'], + '5.11.4': ['https://github.com/ant-design/ant-design/pull/46103'], } as const; function matchDeprecated(v: string) {