Skip to content

Commit

Permalink
release: v6.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maomincoding committed Mar 5, 2024
1 parent 6d82e23 commit b83d7ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/changeLog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Although the version number uses the version number of Strve, the content includes not only the updated content of Strve, but also the updated content of other official tools in the same period.
:::

## v6.7.0 (Latest)
## v6.7.1 (Latest)

- Code refactoring and improving some APIs;
- Update [create-strve-app](https://www.npmjs.com/package/create-strve-app);
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ If you open the above index.html directly in the browser, you will find that it
import {
html,
defineComponent,
} from 'https://cdn.jsdelivr.net/npm/strve-js@6.7.0/dist/strve.full-esm.js';
} from 'https://cdn.jsdelivr.net/npm/strve-js@6.7.1/dist/strve.full-esm.js';
defineComponent(
{
Expand Down Expand Up @@ -45,7 +45,7 @@ All top-level APIs of this version are exposed as properties on the global Strve
:::

```html
<script src="https://cdn.jsdelivr.net/npm/strve-js@6.7.0/dist/strve.full.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/strve-js@6.7.1/dist/strve.full.prod.js"></script>
<script>
const { html, defineComponent } = Strve;
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you open the above index.html directly in the browser, you will find that it
import {
html,
defineComponent,
} from 'https://cdn.jsdelivr.net/npm/strve-js@6.7.0/dist/strve.full-esm.js';
} from 'https://cdn.jsdelivr.net/npm/strve-js@6.7.1/dist/strve.full-esm.js';
defineComponent(
{
Expand Down Expand Up @@ -75,7 +75,7 @@ All top-level APIs of this version are exposed as properties on the global Strve
<title>Strve.js</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/strve-js@6.7.0/dist/strve.full.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/strve-js@6.7.1/dist/strve.full.prod.js"></script>
<script>
const { html, defineComponent } = Strve;
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": "strve-doc",
"version": "6.7.0",
"version": "6.7.1",
"description": "Strve.js document address",
"main": "index.js",
"repository": {
Expand Down

0 comments on commit b83d7ec

Please sign in to comment.