Skip to content

Commit

Permalink
chore(release): v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot committed Sep 25, 2024
1 parent 240223b commit e2d6dcc
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 24 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### [3.0.3](https://github.com/taiga-family/maskito/compare/v3.0.2...v3.0.3) (2024-09-25)

### 🐞 Bug Fixes

- **angular**: race condition when `[maskitoOptions]` are changed before long element predicate is resolved (#1696)
[(9f9bad3)](https://github.com/taiga-family/maskito/commit/9f9bad3036774fa51350c3c8402cf57f15e789d6)
- **kit**: `Time` has invalid segment separator for `MM:SS.MSS` mode (#1687)
[(93972be)](https://github.com/taiga-family/maskito/commit/93972be370e1abf4278497b11f61d3c923ae5caa)
- **core**: incorrect behavior of `overwriteMode = replace` if selection contains several characters (#1685)
[(67c3c10)](https://github.com/taiga-family/maskito/commit/67c3c10704f62efff4c47f1ad802859d54257752)
- **react**: race condition when `options` are changed before long element predicate is resolved (#1651)
[(f2932ce)](https://github.com/taiga-family/maskito/commit/f2932ce10ec80a1080befaee9e5c235bc41a1b16)

### [3.0.2](https://github.com/taiga-family/maskito/compare/v3.0.1...v3.0.2) (2024-09-20)

### 🐞 Bug Fixes
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": "3.0.2",
"version": "3.0.3",
"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": "3.0.2",
"version": "3.0.3",
"description": "The Angular-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -38,7 +38,7 @@
"peerDependencies": {
"@angular/core": ">=16.0.0",
"@angular/forms": ">=16.0.0",
"@maskito/core": "^3.0.2"
"@maskito/core": "^3.0.3"
},
"ng-update": {
"packageGroup": [
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": "3.0.2",
"version": "3.0.3",
"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": "3.0.2",
"version": "3.0.3",
"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": "^3.0.2"
"@maskito/core": "^3.0.3"
}
}
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": "3.0.2",
"version": "3.0.3",
"description": "The optional framework-agnostic Maskito's package with phone masks",
"keywords": [
"mask",
Expand Down Expand Up @@ -32,8 +32,8 @@
"libphonenumber-js": "1.11.9"
},
"peerDependencies": {
"@maskito/core": "^3.0.2",
"@maskito/kit": "^3.0.2",
"@maskito/core": "^3.0.3",
"@maskito/kit": "^3.0.3",
"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": "3.0.2",
"version": "3.0.3",
"description": "The React-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -39,7 +39,7 @@
"react-test-renderer": "18.3.1"
},
"peerDependencies": {
"@maskito/core": "^3.0.2",
"@maskito/core": "^3.0.3",
"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": "3.0.2",
"version": "3.0.3",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -34,7 +34,7 @@
"vue": "3.5.8"
},
"peerDependencies": {
"@maskito/core": "^3.0.2",
"@maskito/core": "^3.0.3",
"vue": ">=3.0.0"
}
}

0 comments on commit e2d6dcc

Please sign in to comment.