Skip to content

Commit

Permalink
bump to 3.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpmartins committed Aug 2, 2021
1 parent 89d251a commit 52417e4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [3.15.1] / 2021-08-02

- Pointing npm scripts to local binaries
- Update CI to node 16.
- More e2e tests with puppeteer.
- Restrict `+` and `-` in some properties. See [#30](https://github.com/jonathanpmartins/v-money3/issues/30)
- Correct toggle for `-` and `+` signals. [#29](https://github.com/jonathanpmartins/v-money3/issues/29)

## [3.15.0] / 2021-08-01

### Feature
Expand Down Expand Up @@ -214,6 +222,7 @@ Fixing a problem with cursor position when deleting a digit.

- First Release with Vue 3 integration.

[3.15.1]: https://github.com/jonathanpmartins/v-money3/compare/v3.15.0...v3.15.1
[3.15.0]: https://github.com/jonathanpmartins/v-money3/compare/v3.14.3...v3.15.0
[3.14.3]: https://github.com/jonathanpmartins/v-money3/compare/v3.14.2...v3.14.3
[3.14.2]: https://github.com/jonathanpmartins/v-money3/compare/v3.14.1...v3.14.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ An exception will be thrown if validation fails.
Use it directly in the browser!

```html
<script src="https://unpkg.com/[email protected].0/dist/v-money3.umd.js"></script>
<script src="https://unpkg.com/[email protected].1/dist/v-money3.umd.js"></script>
```

Take a look at issue [#15](https://github.com/jonathanpmartins/v-money3/issues/15#issuecomment-830988807) and also this [codesandbox](https://codesandbox.io/s/mystifying-paper-bpfyn?file=/index.html) working example.
Expand Down
2 changes: 1 addition & 1 deletion example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<title>Hello v-money3! Money Mask for Vue 3</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<script src="https://unpkg.com/[email protected].0/dist/v-money3.umd.js"></script>
<script src="https://unpkg.com/[email protected].1/dist/v-money3.umd.js"></script>
<script src="./src/main.js" type="module"></script>
<!--
To prevent waterfall-loading, we preload
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": "v-money3",
"version": "3.15.0",
"version": "3.15.1",
"description": "Vue3 currency input/directive mask",
"main": "./dist/v-money3.umd.js",
"module": "./dist/v-money3.es.js",
Expand Down

0 comments on commit 52417e4

Please sign in to comment.