Skip to content

Commit

Permalink
chore(release): 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tinkoff-bot committed Sep 4, 2023
1 parent eeea948 commit 754324a
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 24 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
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.5.0](https://github.com/taiga-family/maskito/compare/v1.4.0...v1.5.0) (2023-09-04)

### Features

- `Phone` add new package ([#425](https://github.com/taiga-family/maskito/issues/425))
([621e61d](https://github.com/taiga-family/maskito/commit/621e61d5a8aa1788405369e4bd881dddd2beaed3))
- **core:** add IME composition support ([#467](https://github.com/taiga-family/maskito/issues/467))
([e7d664b](https://github.com/taiga-family/maskito/commit/e7d664b66a008a742c0a532e341b0e0bb0a0f759))
- **demo:** documentation is now available at https://maskito.dev
([#392](https://github.com/taiga-family/maskito/issues/392))
([355f87f](https://github.com/taiga-family/maskito/commit/355f87fd536758bc2db59f760ed114d28264122a))

### Bug Fixes

- **kit:** `maskitoCaretGuard` doesn't work after focus on `<select />`
([#462](https://github.com/taiga-family/maskito/issues/462))
([9f456da](https://github.com/taiga-family/maskito/commit/9f456dad7f7f9d02db4eb5993ecb5fb5aabfe613))
- **kit:** `Number` should drop items from `decimalPseudoSeparators` if any is equal to `thousandSeparator`
([#390](https://github.com/taiga-family/maskito/issues/390))
([2107adc](https://github.com/taiga-family/maskito/commit/2107adc445ed26ce1507c5e0c534b668d7ae5b12))

## [1.4.0](https://github.com/taiga-family/maskito/compare/v1.3.0...v1.4.0) (2023-07-27)

### Features
Expand Down
22 changes: 11 additions & 11 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.4.0",
"version": "1.5.0",
"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.4.0",
"version": "1.5.0",
"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.4.0",
"@maskito/core": "^1.5.0",
"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.4.0",
"version": "1.5.0",
"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.4.0",
"version": "1.5.0",
"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.4.0"
"@maskito/core": "^1.5.0"
}
}
6 changes: 3 additions & 3 deletions projects/phone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maskito/phone",
"version": "1.4.0",
"version": "1.5.0",
"description": "The optional framework-agnostic Maskito's package with phone masks",
"keywords": [
"mask",
Expand Down Expand Up @@ -32,8 +32,8 @@
"libphonenumber-js": "1.10.44"
},
"peerDependencies": {
"@maskito/core": "^1.4.0",
"@maskito/kit": "^1.4.0",
"@maskito/core": "^1.5.0",
"@maskito/kit": "^1.5.0",
"libphonenumber-js": ">=1.0.0"
}
}
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.4.0",
"version": "1.5.0",
"description": "The React-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -40,7 +40,7 @@
"react-test-renderer": "18.2.0"
},
"peerDependencies": {
"@maskito/core": "^1.4.0",
"@maskito/core": "^1.5.0",
"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.4.0",
"version": "1.5.0",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@vue/vue3-jest": "29.2.5"
},
"peerDependencies": {
"@maskito/core": "^1.4.0",
"@maskito/core": "^1.5.0",
"vue": ">=3.0.0"
}
}

0 comments on commit 754324a

Please sign in to comment.