Skip to content

Commit

Permalink
chore(release): 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tinkoff-bot committed Jul 11, 2023
1 parent 06afbcb commit 99af63a
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 23 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions projects/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maskito/angular",
"version": "1.2.0",
"version": "1.2.1",
"description": "The Angular-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion projects/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions projects/kit/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -30,6 +30,6 @@
"Nikita Barsukov <[email protected]>"
],
"peerDependencies": {
"@maskito/core": "^1.2.0"
"@maskito/core": "^1.2.1"
}
}
4 changes: 2 additions & 2 deletions projects/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maskito/react",
"version": "1.2.0",
"version": "1.2.1",
"description": "The React-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions projects/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maskito/vue",
"version": "1.2.0",
"version": "1.2.1",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -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"
}
}

0 comments on commit 99af63a

Please sign in to comment.