Skip to content

Commit

Permalink
bump to 3.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpmartins committed Aug 23, 2021
1 parent 32d0456 commit 7af0299
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [3.17.2] / 2021-08-23

### Improvements

- `lastKnownValue` was removed from directives `setValue` method. It was causing issues with reactivity.

## [3.17.1] / 2021-08-22

### Fix
Expand Down Expand Up @@ -265,6 +271,7 @@ Fixing a problem with cursor position when deleting a digit.

- First Release with Vue 3 integration.

[3.17.2]: https://github.com/jonathanpmartins/v-money3/compare/v3.17.1...v3.17.2
[3.17.1]: https://github.com/jonathanpmartins/v-money3/compare/v3.17.0...v3.17.1
[3.17.0]: https://github.com/jonathanpmartins/v-money3/compare/v3.16.1...v3.17.0
[3.16.1]: https://github.com/jonathanpmartins/v-money3/compare/v3.16.0...v3.16.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ An exception will be thrown if validation fails.
Use it directly in the browser!

```html
<script src="https://unpkg.com/[email protected].1/dist/v-money3.umd.js"></script>
<script src="https://unpkg.com/[email protected].2/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].1/dist/v-money3.umd.js"></script>
<script src="https://unpkg.com/[email protected].2/dist/v-money3.umd.js"></script>
<script src="./src/main.js" type="module"></script>

<!-- <script src="./dist/v-money3.umd.js" type="module"></script>-->
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-money3",
"version": "3.17.1",
"version": "3.17.2",
"description": "Vue3 currency input/directive mask",
"main": "./dist/v-money3.umd.js",
"module": "./dist/v-money3.es.js",
Expand All @@ -15,7 +15,7 @@
"serve": "./node_modules/node/bin/node ./node_modules/vite/bin/vite.js --host=localhost --port=3000 --open --force",
"build": "./node_modules/node/bin/node ./node_modules/vite/bin/vite.js build",
"test": "./node_modules/node/bin/node ./node_modules/jest/bin/jest.js",
"bump-lock": "npm i --package-lock-only",
"lock": "npm i --package-lock-only",
"prepublish": "npm run build"
},
"files": [
Expand Down

0 comments on commit 7af0299

Please sign in to comment.