Skip to content

Commit 311d588

Browse files
committed
chore: update version and readme
1 parent 2f1910e commit 311d588

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.6.9
2+
3+
* Fixed that the chart may not be the same size as the component root element ([#761](https://github.com/ecomfe/vue-echarts/issues/761)).
4+
15
## 6.6.8
26

37
* Fixed the postinstall script to patch the correct `types` entry for Vue 2.7.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
236236

237237
<!-- vue3Scripts:start -->
238238
```html
239-
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.7"></script>
239+
<script src="https://cdn.jsdelivr.net/npm/vue@3.4.19"></script>
240240
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
241-
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
241+
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
242242
```
243243
<!-- vue3Scripts:end -->
244244

@@ -256,9 +256,9 @@ app.component('v-chart', VueECharts)
256256

257257
<!-- vue2Scripts:start -->
258258
```html
259-
<script src="https://cdn.jsdelivr.net/npm/[email protected].15"></script>
259+
<script src="https://cdn.jsdelivr.net/npm/[email protected].16"></script>
260260
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
261-
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
261+
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
262262
```
263263
<!-- vue2Scripts:end -->
264264

README.zh-Hans.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ import "echarts";
236236

237237
<!-- vue3Scripts:start -->
238238
```html
239-
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.7"></script>
239+
<script src="https://cdn.jsdelivr.net/npm/vue@3.4.19"></script>
240240
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
241-
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
241+
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
242242
```
243243
<!-- vue3Scripts:end -->
244244

@@ -256,9 +256,9 @@ app.component('v-chart', VueECharts)
256256

257257
<!-- vue2Scripts:start -->
258258
```html
259-
<script src="https://cdn.jsdelivr.net/npm/[email protected].15"></script>
259+
<script src="https://cdn.jsdelivr.net/npm/[email protected].16"></script>
260260
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
261-
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
261+
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
262262
```
263263
<!-- vue2Scripts:end -->
264264

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-echarts",
3-
"version": "6.6.8",
3+
"version": "6.6.9",
44
"description": "Vue.js component for Apache ECharts™.",
55
"author": "GU Yiling <[email protected]>",
66
"scripts": {

scripts/docs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ function resolvePath(...parts) {
1010
const CDN_PREFIX = "https://cdn.jsdelivr.net/npm/";
1111

1212
const DEP_VERSIONS = {
13-
"vue@3": "3.3.7",
14-
"vue@2": "2.7.15",
13+
"vue@3": "3.4.19",
14+
"vue@2": "2.7.16",
1515
echarts: "5.4.3",
1616
[name]: version
1717
};

0 commit comments

Comments
 (0)