diff --git a/CHANGELOG.md b/CHANGELOG.md index 38ffa8ea5..3ba44779e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.11.1](https://github.com/tinkoff/maskito/compare/v0.11.0...v0.11.1) (2023-05-11) + +### Bug Fixes + +- **core:** `insertFromDrop` action behaves now in the same way as `insertFromPaste` + ([#291](https://github.com/tinkoff/maskito/issues/291)) + ([58e0fcc](https://github.com/tinkoff/maskito/commit/58e0fccb7ddd3c741ffa3c8b99efbcf4571aab37)) +- **kit:** `Time` doesn't validate time segments on `drop` event ([#289](https://github.com/tinkoff/maskito/issues/289)) + ([0c6d1b9](https://github.com/tinkoff/maskito/commit/0c6d1b9917d0c86a98c0d215c38a0e2076ff5680)) + ## [0.11.0](https://github.com/tinkoff/maskito/compare/v0.10.0...v0.11.0) (2023-05-02) ### Features diff --git a/package-lock.json b/package-lock.json index 77eda232b..ae70a308c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "maskito", - "version": "0.11.0", + "version": "0.11.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "maskito", - "version": "0.11.0", + "version": "0.11.1", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index d4cbeaaf6..849932828 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maskito", - "version": "0.11.0", + "version": "0.11.1", "description": "Collection of libraries to create an input mask which ensures that user types value according to predefined format", "keywords": [ "mask", diff --git a/projects/angular/package.json b/projects/angular/package.json index eefa26149..fcf9e04a8 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/angular", - "version": "0.11.0", + "version": "0.11.1", "description": "The Angular-specific Maskito's library", "keywords": [ "mask", @@ -35,7 +35,7 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "@angular/forms": ">=12.0.0", - "@maskito/core": "^0.11.0", + "@maskito/core": "^0.11.1", "rxjs": ">=6.0.0" }, "ng-update": { diff --git a/projects/core/package.json b/projects/core/package.json index 40839eded..a630755a7 100644 --- a/projects/core/package.json +++ b/projects/core/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/core", - "version": "0.11.0", + "version": "0.11.1", "description": "The main zero-dependency and framework-agnostic Maskito's package to create an input mask", "keywords": [ "mask", diff --git a/projects/kit/package.json b/projects/kit/package.json index 8fad062fb..824dbd950 100644 --- a/projects/kit/package.json +++ b/projects/kit/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/kit", - "version": "0.11.0", + "version": "0.11.1", "description": "The optional framework-agnostic Maskito's package with ready-to-use masks", "keywords": [ "mask", @@ -30,6 +30,6 @@ "Nikita Barsukov " ], "peerDependencies": { - "@maskito/core": "^0.11.0" + "@maskito/core": "^0.11.1" } } diff --git a/projects/react/package.json b/projects/react/package.json index fa35c8386..3baf69a21 100644 --- a/projects/react/package.json +++ b/projects/react/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/react", - "version": "0.11.0", + "version": "0.11.1", "description": "The React-specific Maskito's library", "keywords": [ "mask", @@ -30,7 +30,7 @@ "Georgiy Lunin " ], "peerDependencies": { - "@maskito/core": "^0.11.0", + "@maskito/core": "^0.11.1", "react": ">=16.8", "react-dom": ">=16.8" }