diff --git a/components/Avatar/__changelog__/index.en-US.md b/components/Avatar/__changelog__/index.en-US.md index 3ff67f839a..7129266c6f 100644 --- a/components/Avatar/__changelog__/index.en-US.md +++ b/components/Avatar/__changelog__/index.en-US.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 BugFix + +- Prevent phantom space in avatar image([#2692](https://github.com/arco-design/arco-design/pull/2692)) + ## 2.45.1 2023-03-01 diff --git a/components/Avatar/__changelog__/index.zh-CN.md b/components/Avatar/__changelog__/index.zh-CN.md index d37370e43c..000e557ac7 100644 --- a/components/Avatar/__changelog__/index.zh-CN.md +++ b/components/Avatar/__changelog__/index.zh-CN.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 问题修复 + +- 修复 `Avatar` 组件内部 img 元素存在空白的样式问题([#2692](https://github.com/arco-design/arco-design/pull/2692)) + ## 2.45.1 2023-03-01 diff --git a/components/DatePicker/__changelog__/index.en-US.md b/components/DatePicker/__changelog__/index.en-US.md index 8666f26c8d..1cd0a5573c 100644 --- a/components/DatePicker/__changelog__/index.en-US.md +++ b/components/DatePicker/__changelog__/index.en-US.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 BugFix + +- DatePicker default placeholder remove "Please"([#2709](https://github.com/arco-design/arco-design/pull/2709)) + ## 2.60.0 2024-02-23 diff --git a/components/DatePicker/__changelog__/index.zh-CN.md b/components/DatePicker/__changelog__/index.zh-CN.md index 1fed4f9087..69ca51d42e 100644 --- a/components/DatePicker/__changelog__/index.zh-CN.md +++ b/components/DatePicker/__changelog__/index.zh-CN.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 问题修复 + +- 移除 DatePicker 默认 placeholder "Please"([#2709](https://github.com/arco-design/arco-design/pull/2709)) + ## 2.60.0 2024-02-23 diff --git a/components/Select/__changelog__/index.en-US.md b/components/Select/__changelog__/index.en-US.md index bdc7ca2c88..6cb11eb51c 100644 --- a/components/Select/__changelog__/index.en-US.md +++ b/components/Select/__changelog__/index.en-US.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 BugFix + +- Fixed a bug where the selected item display was not updated in time when the `Select` component options changed (introduced in `2.63.0`)([#2732](https://github.com/arco-design/arco-design/pull/2732)) + ## 2.63.0 2024-06-11 diff --git a/components/Select/__changelog__/index.zh-CN.md b/components/Select/__changelog__/index.zh-CN.md index 9c8175c473..0559d6dc52 100644 --- a/components/Select/__changelog__/index.zh-CN.md +++ b/components/Select/__changelog__/index.zh-CN.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 🐛 问题修复 + +- 修复 `Select` 组件 options 改变时,选中项展示未及时更新的 bug(`2.63.0` 引入)([#2732](https://github.com/arco-design/arco-design/pull/2732)) + ## 2.63.0 2024-06-11 diff --git a/components/index.tsx b/components/index.tsx index eb69e93bfe..0ad8751eea 100644 --- a/components/index.tsx +++ b/components/index.tsx @@ -229,5 +229,5 @@ export { default as Watermark } from './Watermark'; export type { ImageProps, ImagePreviewProps, ImagePreviewActionProps, ImagePreviewGroupProps } from './Image/interface'; export { default as Image } from './Image'; -export const version = '2.63.0'; +export const version = '2.63.1'; diff --git a/package.json b/package.json index a5e2931f44..1c8dcaa423 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@arco-design/web-react", - "version": "2.63.0", + "version": "2.63.1", "description": "Arco Design React UI Library.", "module": "./es/index.js", "main": "./lib/index.js", diff --git a/site/docs/changelog.common.en-US.md b/site/docs/changelog.common.en-US.md index e8dea4b9cd..3260227e9a 100644 --- a/site/docs/changelog.common.en-US.md +++ b/site/docs/changelog.common.en-US.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 💎 Enhancement + +- Optimize `findDOMNode` console warning([#2727](https://github.com/arco-design/arco-design/pull/2727)) + ## 2.63.0 2024-06-11 diff --git a/site/docs/changelog.common.zh-CN.md b/site/docs/changelog.common.zh-CN.md index 79af33dd8b..79b539b531 100644 --- a/site/docs/changelog.common.zh-CN.md +++ b/site/docs/changelog.common.zh-CN.md @@ -1,3 +1,11 @@ +## 2.63.1 + +2024-07-02 + +### 💎 功能优化 + +- 优化 `findDOMNode` 控制台 warning([#2727](https://github.com/arco-design/arco-design/pull/2727)) + ## 2.63.0 2024-06-11 diff --git a/site/docs/version_v2.en-US.md b/site/docs/version_v2.en-US.md index 556791188d..6208ebfb56 100644 --- a/site/docs/version_v2.en-US.md +++ b/site/docs/version_v2.en-US.md @@ -2,6 +2,20 @@ changelog: true --- +## 2.63.1 + +2024-07-02 + +### 💎 Enhancement + +- Optimize `findDOMNode` console warning([#2727](https://github.com/arco-design/arco-design/pull/2727)) + +### 🐛 BugFix + +- Fixed a bug where the selected item display was not updated in time when the `Select` component options changed (introduced in `2.63.0`)([#2732](https://github.com/arco-design/arco-design/pull/2732)) +- DatePicker default placeholder remove "Please"([#2709](https://github.com/arco-design/arco-design/pull/2709)) +- Prevent phantom space in avatar image([#2692](https://github.com/arco-design/arco-design/pull/2692)) + ## 2.63.0 2024-06-11 diff --git a/site/docs/version_v2.zh-CN.md b/site/docs/version_v2.zh-CN.md index 0f1ba9171f..71f31f2d7c 100644 --- a/site/docs/version_v2.zh-CN.md +++ b/site/docs/version_v2.zh-CN.md @@ -2,6 +2,20 @@ changelog: true --- +## 2.63.1 + +2024-07-02 + +### 💎 功能优化 + +- 优化 `findDOMNode` 控制台 warning([#2727](https://github.com/arco-design/arco-design/pull/2727)) + +### 🐛 问题修复 + +- 修复 `Select` 组件 options 改变时,选中项展示未及时更新的 bug(`2.63.0` 引入)([#2732](https://github.com/arco-design/arco-design/pull/2732)) +- 移除 DatePicker 默认 placeholder "Please"([#2709](https://github.com/arco-design/arco-design/pull/2709)) +- 修复 `Avatar` 组件内部 img 元素存在空白的样式问题([#2692](https://github.com/arco-design/arco-design/pull/2692)) + ## 2.63.0 2024-06-11