diff --git a/CHANGELOG.md b/CHANGELOG.md index ebeb9a94a..7491cf732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ 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. +### [1.2.1](https://github.com/tinkoff/maskito/compare/v1.2.0...v1.2.1) (2023-07-11) + +### Bug Fixes + +- **kit:** `Number` with `postfix` should be compatible with `decimalZeroPadding` + ([#364](https://github.com/tinkoff/maskito/issues/364)) + ([501cf9c](https://github.com/tinkoff/maskito/commit/501cf9c747229d1776fb62cc04fbc8879990c617)) +- **kit:** `Prefix`/`Postfix` is incompatible if they end/start with the same character + ([#366](https://github.com/tinkoff/maskito/issues/366)) + ([06afbcb](https://github.com/tinkoff/maskito/commit/06afbcb4a2c5c15e2ef9dc81db4309adf01aa8ef)) + ## [1.2.0](https://github.com/tinkoff/maskito/compare/v1.1.1...v1.2.0) (2023-07-03) ### Features diff --git a/package-lock.json b/package-lock.json index 16c68094a..07889b71d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "maskito", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "maskito", - "version": "1.2.0", + "version": "1.2.1", "hasInstallScript": true, "license": "Apache-2.0", "workspaces": [ @@ -44705,7 +44705,7 @@ }, "projects/angular": { "name": "@maskito/angular", - "version": "1.2.0", + "version": "1.2.1", "license": "Apache-2.0", "dependencies": { "tslib": "^2.3.0" @@ -44720,7 +44720,7 @@ }, "projects/core": { "name": "@maskito/core", - "version": "1.2.0", + "version": "1.2.1", "license": "Apache-2.0" }, "projects/demo": { @@ -44736,9 +44736,9 @@ "@angular/platform-browser-dynamic": "^12.2.16", "@angular/platform-server": "^12.2.16", "@angular/router": "^12.2.16", - "@maskito/angular": "^1.2.0", - "@maskito/core": "^1.2.0", - "@maskito/kit": "^1.2.0", + "@maskito/angular": "^1.2.1", + "@maskito/core": "^1.2.1", + "@maskito/kit": "^1.2.1", "@ng-web-apis/common": "^2.0.0", "@ng-web-apis/universal": "^2.1.0", "@nguniversal/express-engine": "^12.1.3", @@ -44769,7 +44769,7 @@ }, "projects/kit": { "name": "@maskito/kit", - "version": "1.2.0", + "version": "1.2.1", "license": "Apache-2.0", "peerDependencies": { "@maskito/core": "^0.12.1" @@ -44777,7 +44777,7 @@ }, "projects/react": { "name": "@maskito/react", - "version": "1.2.0", + "version": "1.2.1", "license": "Apache-2.0", "devDependencies": { "@testing-library/react": "12.1.5", @@ -44797,7 +44797,7 @@ }, "projects/vue": { "name": "@maskito/vue", - "version": "1.2.0", + "version": "1.2.1", "license": "Apache-2.0", "devDependencies": { "@vue/test-utils": "2.3.2", @@ -48761,9 +48761,9 @@ "@angular/platform-browser-dynamic": "^12.2.16", "@angular/platform-server": "^12.2.16", "@angular/router": "^12.2.16", - "@maskito/angular": "^1.2.0", - "@maskito/core": "^1.2.0", - "@maskito/kit": "^1.2.0", + "@maskito/angular": "^1.2.1", + "@maskito/core": "^1.2.1", + "@maskito/kit": "^1.2.1", "@ng-web-apis/common": "^2.0.0", "@ng-web-apis/universal": "^2.1.0", "@nguniversal/builders": "^12.1.3", diff --git a/package.json b/package.json index a60d052af..ddde93dac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maskito", - "version": "1.2.0", + "version": "1.2.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 28734a714..6e57e5ce2 100644 --- a/projects/angular/package.json +++ b/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/angular", - "version": "1.2.0", + "version": "1.2.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": "^1.2.0", + "@maskito/core": "^1.2.1", "rxjs": ">=6.0.0" }, "ng-update": { diff --git a/projects/core/package.json b/projects/core/package.json index d5b992671..9549f8446 100644 --- a/projects/core/package.json +++ b/projects/core/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/core", - "version": "1.2.0", + "version": "1.2.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 34f4d6d4b..b6fc2ebe1 100644 --- a/projects/kit/package.json +++ b/projects/kit/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/kit", - "version": "1.2.0", + "version": "1.2.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": "^1.2.0" + "@maskito/core": "^1.2.1" } } diff --git a/projects/react/package.json b/projects/react/package.json index 1e9c0d429..225e52fbe 100644 --- a/projects/react/package.json +++ b/projects/react/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/react", - "version": "1.2.0", + "version": "1.2.1", "description": "The React-specific Maskito's library", "keywords": [ "mask", @@ -40,7 +40,7 @@ "react-test-renderer": ">=17.0.0" }, "peerDependencies": { - "@maskito/core": "^1.2.0", + "@maskito/core": "^1.2.1", "react": ">=16.8", "react-dom": ">=16.8" } diff --git a/projects/vue/package.json b/projects/vue/package.json index 97e6d9f48..3b0451106 100644 --- a/projects/vue/package.json +++ b/projects/vue/package.json @@ -1,6 +1,6 @@ { "name": "@maskito/vue", - "version": "1.2.0", + "version": "1.2.1", "description": "The Vue-specific Maskito's library", "keywords": [ "mask", @@ -33,7 +33,7 @@ "@vue/vue3-jest": "29.2.4" }, "peerDependencies": { - "@maskito/core": "^1.2.0", + "@maskito/core": "^1.2.1", "vue": ">=3.0.0" } }