Skip to content

Commit

Permalink
chore: update version and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Justineo committed Feb 20, 2024
1 parent 2f1910e commit 311d588
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.6.9

* Fixed that the chart may not be the same size as the component root element ([#761](https://github.com/ecomfe/vue-echarts/issues/761)).

## 6.6.8

* Fixed the postinstall script to patch the correct `types` entry for Vue 2.7.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC

<!-- vue3Scripts:start -->
```html
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.7"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@3.4.19"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
```
<!-- vue3Scripts:end -->

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

<!-- vue2Scripts:start -->
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].15"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].16"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
```
<!-- vue2Scripts:end -->

Expand Down
8 changes: 4 additions & 4 deletions README.zh-Hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ import "echarts";

<!-- vue3Scripts:start -->
```html
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.7"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@3.4.19"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
```
<!-- vue3Scripts:end -->

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

<!-- vue2Scripts:start -->
```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].15"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].16"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].8"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9"></script>
```
<!-- vue2Scripts:end -->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-echarts",
"version": "6.6.8",
"version": "6.6.9",
"description": "Vue.js component for Apache ECharts™.",
"author": "GU Yiling <[email protected]>",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ function resolvePath(...parts) {
const CDN_PREFIX = "https://cdn.jsdelivr.net/npm/";

const DEP_VERSIONS = {
"vue@3": "3.3.7",
"vue@2": "2.7.15",
"vue@3": "3.4.19",
"vue@2": "2.7.16",
echarts: "5.4.3",
[name]: version
};
Expand Down

0 comments on commit 311d588

Please sign in to comment.