Skip to content

Commit

Permalink
Build and release v6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johndatserakis committed Aug 30, 2022
1 parent 279af83 commit 7019466
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG.md

## 6.1.0 (2022-08-29)

- Update install method to avoid `.use` issue. Thank you @queengooborg.

## 6.0.3

- Upgrade package to support Vue 3. Vue 2 support can be found at `v5.4.0`.
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-cookie-accept-decline.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ if (typeof window !== 'undefined') {
} else if (typeof global !== 'undefined') {
GlobalVue = global.Vue;
}
if (GlobalVue) {
if (GlobalVue && 'use' in GlobalVue) {
GlobalVue.use(plugin);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/vue-cookie-accept-decline.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-cookie-accept-decline.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
} else if (typeof global !== 'undefined') {
GlobalVue = global.Vue;
}
if (GlobalVue) {
if (GlobalVue && 'use' in GlobalVue) {
GlobalVue.use(plugin);
}

Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<script type="module" crossorigin src="/vue-cookie-accept-decline/assets/index.2f58afc8.js"></script>
<script type="module" crossorigin src="/vue-cookie-accept-decline/assets/index.d553c29d.js"></script>
<link rel="stylesheet" href="/vue-cookie-accept-decline/assets/index.2f68f6de.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@
},
"sideEffects": false,
"unpkg": "dist/vue-cookie-accept-decline.min.js",
"version": "6.0.3"
"version": "6.1.0"
}

0 comments on commit 7019466

Please sign in to comment.