diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b9c3257c..238b47a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ 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.7.0](https://github.com/tinkoff/maskito/compare/v0.6.0...v0.7.0) (2023-03-20) + +### Features + +- **core:** add `deleteSoftLineBackward` & `deleteSoftLineForward` support + ([#207](https://github.com/tinkoff/maskito/issues/207)) + ([cbd5479](https://github.com/tinkoff/maskito/commit/cbd5479c04c07113804eee6ea6c9838ee8681597)) +- **kit:** use 1 as min segment value in `Date`-related masks ([#197](https://github.com/tinkoff/maskito/issues/197)) + ([c85ca23](https://github.com/tinkoff/maskito/commit/c85ca2355cb0b6fcef73f3e7497f7c31fa82c87c)) + +### Bug Fixes + +- **core:** `Maskito` losses valid characters on invalid insertion (`overwriteMode: replace`) + ([#208](https://github.com/tinkoff/maskito/issues/208)) + ([ef183b4](https://github.com/tinkoff/maskito/commit/ef183b454e4a7db5b2cb48cbe26129bf303f676a)) +- **kit:** `Number` should drop leading zeroes for negative numbers + ([#204](https://github.com/tinkoff/maskito/issues/204)) + ([6e9adf7](https://github.com/tinkoff/maskito/commit/6e9adf758aa585944ee08f2e2aff81a5664adefd)) + ## [0.6.0](https://github.com/tinkoff/maskito/compare/v0.5.0...v0.6.0) (2023-03-15) ### Features diff --git a/package-lock.json b/package-lock.json index 7a4a54f1e..e2cbd7e12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "maskito", - "version": "0.6.0", + "version": "0.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "maskito", - "version": "0.6.0", + "version": "0.7.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 5c88836a0..b44498744 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maskito", - "version": "0.6.0", + "version": "0.7.0", "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 1221c6f0b..8c85cbd3c 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/angular", - "version": "0.6.0", + "version": "0.7.0", "description": "The Angular-specific Maskito's library", "keywords": [ "mask", @@ -34,7 +34,7 @@ "peerDependencies": { "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", - "@maskito/core": "^0.6.0", + "@maskito/core": "^0.7.0", "rxjs": ">=6.0.0" }, "ng-update": { diff --git a/projects/core/package.json b/projects/core/package.json index ffca730ec..ce94083ea 100644 --- a/projects/core/package.json +++ b/projects/core/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/core", - "version": "0.6.0", + "version": "0.7.0", "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 3387d9e81..8ab701dba 100644 --- a/projects/kit/package.json +++ b/projects/kit/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/kit", - "version": "0.6.0", + "version": "0.7.0", "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.6.0" + "@maskito/core": "^0.7.0" } }