Skip to content

Commit

Permalink
chore(release): v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 22, 2024
1 parent 805f70b commit 95305d0
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 24 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### [3.1.2](https://github.com/taiga-family/maskito/compare/v3.1.1...v3.1.2) (2024-10-22)

### 🐞 Bug Fixes

- **kit**: `Time` & `DateTime` has conflicts between `step` & `AM/PM` features (#1791)
[(805f70b)](https://github.com/taiga-family/maskito/commit/805f70b74e04fb3b8613f89d84e771c734438dab)
- **kit**: `Number` incorrectly shift caret for 1st time insertion into textfield with initial value (#1792)
[(0049d91)](https://github.com/taiga-family/maskito/commit/0049d91a0a498977bb5f4cba9fbf9f02cb74dae9)

### [3.1.1](https://github.com/taiga-family/maskito/compare/v3.1.0...v3.1.1) (2024-10-17)

### 🐞 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.1.1",
"version": "3.1.2",
"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.1.1",
"version": "3.1.2",
"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.1.1"
"@maskito/core": "^3.1.2"
},
"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.1.1",
"version": "3.1.2",
"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.1.1",
"version": "3.1.2",
"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.1.1"
"@maskito/core": "^3.1.2"
}
}
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.1.1",
"version": "3.1.2",
"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.11"
},
"peerDependencies": {
"@maskito/core": "^3.1.1",
"@maskito/kit": "^3.1.1",
"@maskito/core": "^3.1.2",
"@maskito/kit": "^3.1.2",
"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.1.1",
"version": "3.1.2",
"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.1.1",
"@maskito/core": "^3.1.2",
"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.1.1",
"version": "3.1.2",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -34,7 +34,7 @@
"vue": "3.5.12"
},
"peerDependencies": {
"@maskito/core": "^3.1.1",
"@maskito/core": "^3.1.2",
"vue": ">=3.0.0"
}
}

0 comments on commit 95305d0

Please sign in to comment.