diff --git a/CHANGELOG.md b/CHANGELOG.md index 08f3139..9e0c2e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 88b710d..b6b8599 100644 --- a/README.md +++ b/README.md @@ -268,7 +268,7 @@ An exception will be thrown if validation fails. Use it directly in the browser! ```html - + ``` 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. diff --git a/example/index.html b/example/index.html index 8b9aab1..00f7ff9 100644 --- a/example/index.html +++ b/example/index.html @@ -7,7 +7,7 @@ Hello v-money3! Money Mask for Vue 3 - + diff --git a/package-lock.json b/package-lock.json index dc0639d..dfe3cd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "v-money3", - "version": "3.17.1", + "version": "3.17.2", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "3.17.1", + "version": "3.17.2", "license": "MIT", "devDependencies": { "@babel/plugin-transform-runtime": "^7.15.0", diff --git a/package.json b/package.json index b4d3df1..6382287 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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": [