diff --git a/CHANGELOG.md b/CHANGELOG.md index a99ade2..7058dbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [3.20.1] / 2021-10-05 + +### Fix + +- Fixing a problem with multiple components in a loop sharing the same config options. Issue [#49](https://github.com/jonathanpmartins/v-money3/issues/49) + ## [3.20.0] / 2021-09-25 ### New export @@ -329,6 +335,7 @@ Fixing a problem with cursor position when deleting a digit. - First Release with Vue 3 integration. +[3.20.1]: https://github.com/jonathanpmartins/v-money3/compare/v3.20.0...v3.20.1 [3.20.0]: https://github.com/jonathanpmartins/v-money3/compare/v3.19.1...v3.20.0 [3.19.1]: https://github.com/jonathanpmartins/v-money3/compare/v3.19.0...v3.19.1 [3.19.0]: https://github.com/jonathanpmartins/v-money3/compare/v3.18.0...v3.19.0 diff --git a/README.md b/README.md index 000c9f0..d337f8d 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ A console warn with more information will be shown! 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 3afc6b6..a3ed299 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 c0b3c94..7b4fdce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "v-money3", - "version": "3.20.0", + "version": "3.20.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "3.20.0", + "version": "3.20.1", "license": "MIT", "devDependencies": { "@babel/plugin-transform-runtime": "^7.15.0", diff --git a/package.json b/package.json index 07f729f..21798ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "v-money3", - "version": "3.20.0", + "version": "3.20.1", "description": "Vue3 currency input/directive mask", "main": "./dist/v-money3.umd.js", "module": "./dist/v-money3.es.js",