From d210a2b1b2702447b46910bd23b7d0d03be0062d Mon Sep 17 00:00:00 2001 From: tinkoff-bot Date: Tue, 25 Apr 2023 10:34:04 +0000 Subject: [PATCH] chore(release): 0.10.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- projects/angular/package.json | 4 ++-- projects/core/package.json | 2 +- projects/kit/package.json | 4 ++-- 6 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc95a9878..ef1a62917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ 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.10.0](https://github.com/tinkoff/maskito/compare/v0.9.0...v0.10.0) (2023-04-25) + +### Features + +- **kit:** `Number` keeps untouched decimal part if `precision: Infinity` + ([#253](https://github.com/tinkoff/maskito/issues/253)) + ([261779e](https://github.com/tinkoff/maskito/commit/261779ead327397a61b27e634bc827ee70b718f4)) +- **kit:** `Number` supports new `prefix` & `postfix` parameters ([#264](https://github.com/tinkoff/maskito/issues/264)) + ([6e78581](https://github.com/tinkoff/maskito/commit/6e785818dabcde623d8c1c40a584166a0a66f5b6)) +- **kit:** new `maskitoPostfixPostprocessorGenerator` ([#257](https://github.com/tinkoff/maskito/issues/257)) + ([fdc86db](https://github.com/tinkoff/maskito/commit/fdc86dbad368bfc17efd1047b7d68d9622968bb0)) + +### Bug Fixes + +- **kit:** `Number` fails to trim leading zeroes after deleting of leading digit + ([#268](https://github.com/tinkoff/maskito/issues/268)) + ([4ae0010](https://github.com/tinkoff/maskito/commit/4ae0010ef2149694d22d7ae9eb8c9880120c8c75)) +- **kit:** `Number` should trim redundant thousand separators ([#267](https://github.com/tinkoff/maskito/issues/267)) + ([100b793](https://github.com/tinkoff/maskito/commit/100b79317a420103ca98a3b43fe646a6f77d19d5)) +- **kit:** fix first zero in short-format date-mask ([#251](https://github.com/tinkoff/maskito/issues/251)) + ([08bdfd2](https://github.com/tinkoff/maskito/commit/08bdfd26727777c3a6fc870e433003be2b64cc0e)) + ## [0.9.0](https://github.com/tinkoff/maskito/compare/v0.8.1...v0.9.0) (2023-03-31) ### Features diff --git a/package-lock.json b/package-lock.json index bd320237c..155ad9d08 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "maskito", - "version": "0.9.0", + "version": "0.10.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "maskito", - "version": "0.9.0", + "version": "0.10.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index b96971899..d7968c5ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maskito", - "version": "0.9.0", + "version": "0.10.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 bc3a286e5..0d7c27ae6 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/angular", - "version": "0.9.0", + "version": "0.10.0", "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.9.0", + "@maskito/core": "^0.10.0", "rxjs": ">=6.0.0" }, "ng-update": { diff --git a/projects/core/package.json b/projects/core/package.json index 171e8b00f..d9dc7d194 100644 --- a/projects/core/package.json +++ b/projects/core/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/core", - "version": "0.9.0", + "version": "0.10.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 e4d4902d2..48bc72064 100644 --- a/projects/kit/package.json +++ b/projects/kit/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/kit", - "version": "0.9.0", + "version": "0.10.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.9.0" + "@maskito/core": "^0.10.0" } }