Skip to content

Commit

Permalink
chore: bump version to beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
beholdr committed Jun 7, 2024
1 parent fb514fd commit 0285532
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/v3/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ You can use Maska directly from CDN with a simple script tag as UMD-build.
Library API will be exposed on the global `Maska` object:

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/maska.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/maska.js"></script>
<script>
const { Mask, MaskInput } = Maska
Expand All @@ -81,7 +81,7 @@ Include Maska from CDN, just make sure to include it **before** Alpine's core JS

```html
<!-- Maska Plugin -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/alpine.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/alpine.js"></script>
<!-- Alpine Core -->
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
```
Expand All @@ -92,7 +92,7 @@ This will automatically register Maska plugin inside Alpine.
You can use Maska directly from CDN and register directive:

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/vue.js"></script>
<script>
const { vMaska } = Maska
Expand All @@ -113,7 +113,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h
<script type="importmap">
{
"imports": {
"maska": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/maska.mjs"
"maska": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/maska.mjs"
}
}
</script>
Expand All @@ -131,7 +131,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h
<script type="importmap">
{
"imports": {
"maska/alpine": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/alpine.mjs"
"maska/alpine": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/alpine.mjs"
}
}
</script>
Expand All @@ -149,7 +149,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h
<script type="importmap">
{
"imports": {
"maska/vue": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/vue.mjs"
"maska/vue": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/vue.mjs"
}
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "maska",
"description": "Simple zero-dependency input mask for Vanilla JS, Vue, Alpine.js and Svelte",
"version": "3.0.0-beta1",
"version": "3.0.0-beta2",
"keywords": [
"mask",
"inputmask",
Expand Down

0 comments on commit 0285532

Please sign in to comment.