diff --git a/docs/en-US/release-notes.md b/docs/en-US/release-notes.md
index 4b041721b7..3d961209c6 100644
--- a/docs/en-US/release-notes.md
+++ b/docs/en-US/release-notes.md
@@ -2,6 +2,19 @@
## To be released
+- fix(plugin-export): allow to configure in acl
+- fix: sign in/sign up with enter key
+- fix(client): percent precision
+- feat: association field block (#493)
+- feat: plugin export (#479)
+- fix: create or delete collection error (#501)
+- feat: update collections & fields (#500)
+- fix: rollback when field creation fails (#498)
+- fix(client): set `dropdownMatchSelectWidth` to false globally (#497)
+- fix(client): no-key warning in user menu items (#496)
+- Feat(plugin workflow): cron field for schedule trigger configuration (#495)
+- feat: audit logs (#494)
+- fix(client): language settings
- feat(client): improve locale
- refactor(plugin-workflow): add revision column to execution (#491)
- fix(plugin-multi-app-manager): fix pg cannot create database block tests
@@ -29,12 +42,14 @@
### New Features
-- Fields: formula、relationships(o2o, o2m, m2o, m2m)
-- Blocks: charts(g2plot)
+- Fields: Formula、Relationships(o2o, o2m, m2o, m2m)
+- Blocks: Charts(g2plot)
+- Plugins: Audit logs, Export
### Break Changes
- The value of the percentage field, such as 20%, the new version is 0.2, the old version is 20
+- Deleted the sub-table field and used the one-to-many field instead
## 2022/06/01 ~ v0.7.0-alpha.83
diff --git a/docs/zh-CN/charts.md b/docs/zh-CN/charts.md
deleted file mode 100644
index 737f053db0..0000000000
--- a/docs/zh-CN/charts.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Charts
-
-
diff --git a/docs/zh-CN/release-notes.md b/docs/zh-CN/release-notes.md
index 06066ef78b..007b932d72 100644
--- a/docs/zh-CN/release-notes.md
+++ b/docs/zh-CN/release-notes.md
@@ -2,6 +2,19 @@
## To be released
+- fix(plugin-export): allow to configure in acl
+- fix: sign in/sign up with enter key
+- fix(client): percent precision
+- feat: association field block (#493)
+- feat: plugin export (#479)
+- fix: create or delete collection error (#501)
+- feat: update collections & fields (#500)
+- fix: rollback when field creation fails (#498)
+- fix(client): set `dropdownMatchSelectWidth` to false globally (#497)
+- fix(client): no-key warning in user menu items (#496)
+- Feat(plugin workflow): cron field for schedule trigger configuration (#495)
+- feat: audit logs (#494)
+- fix(client): language settings
- feat(client): improve locale
- refactor(plugin-workflow): add revision column to execution (#491)
- fix(plugin-multi-app-manager): fix pg cannot create database block tests
@@ -29,12 +42,14 @@
### New Features
-- Fields: formula、relationships(o2o, o2m, m2o, m2m)
-- Blocks: charts(g2plot)
+- Fields: Formula、Relationships(o2o, o2m, m2o, m2m)
+- Blocks: Charts(g2plot)
+- Plugins: Audit logs, Export
### Break Changes
- The value of the percentage field, such as 20%, the new version is 0.2, the old version is 20
+- Deleted the sub-table field and used the one-to-many field instead
## 2022/06/01 ~ v0.7.0-alpha.83
diff --git a/packages/core/client/src/schema-component/antd/chart/Chart.tsx b/packages/core/client/src/schema-component/antd/chart/Chart.tsx
deleted file mode 100644
index 6a813f227d..0000000000
--- a/packages/core/client/src/schema-component/antd/chart/Chart.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import React from 'react';
-
-export const Chart = () => {
- return
diff --git a/packages/core/client/src/schema-component/antd/index.ts b/packages/core/client/src/schema-component/antd/index.ts
index d4ca4432f3..d97193be7a 100644
--- a/packages/core/client/src/schema-component/antd/index.ts
+++ b/packages/core/client/src/schema-component/antd/index.ts
@@ -3,7 +3,6 @@ export * from './block-item';
export * from './calendar';
export * from './card-item';
export * from './cascader';
-export * from './chart';
export * from './checkbox';
export * from './color-select';
export * from './date-picker';