Skip to content

Commit

Permalink
chore(release): v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 9, 2024
1 parent 98ce35e commit ef40479
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 24 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
### [3.1.0](https://github.com/taiga-family/maskito/compare/v3.0.3...v3.1.0) (2024-10-09)

### 🚀 Features

- **kit**: `Time` & `DateTime` support `AM` / `PM` formats (#1708)
[(98ce35e)](https://github.com/taiga-family/maskito/commit/98ce35e8fd3318a750959d840f36caaf427fe8f0)
- **kit**: simplify some code logic for `Time` mask (#1688)
[(8c608b8)](https://github.com/taiga-family/maskito/commit/8c608b8cb5eaeca1166b78c6691d38303eb67c6c)

### 🐞 Bug Fixes

- **core**: `overwriteMode: replace` has incorrect behavior on attempt to insert invalid characters (#1772)
[(5aeb074)](https://github.com/taiga-family/maskito/commit/5aeb0741fa82ad6e43e862059a17b2e78ee9831b)
- **deps**: update dependency libphonenumber-js to v1.11.11 (#1760)
[(b8781fb)](https://github.com/taiga-family/maskito/commit/b8781fbe9a2cbacee0d53d5e143687f83b5c3773)
- **deps**: update dependency vue to v3.5.11 (#1754)
[(47f12a3)](https://github.com/taiga-family/maskito/commit/47f12a3ecc16b7f9d79ba31632abc3e1af80b516)
- **deps**: update dependency @types/react to v18.3.11 (#1751)
[(86328e6)](https://github.com/taiga-family/maskito/commit/86328e6b2b76049958f215cfe6551d63f8d3ffcc)
- **deps**: update dependency libphonenumber-js to v1.11.10 (#1747)
[(37a4d8c)](https://github.com/taiga-family/maskito/commit/37a4d8cc374e1f03878692ccc44379b3d92acafe)

### [3.0.3](https://github.com/taiga-family/maskito/compare/v3.0.2...v3.0.3) (2024-09-25)

### 🐞 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.3",
"version": "3.1.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": "3.0.3",
"version": "3.1.0",
"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.3"
"@maskito/core": "^3.1.0"
},
"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.3",
"version": "3.1.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": "3.0.3",
"version": "3.1.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": "^3.0.3"
"@maskito/core": "^3.1.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": "3.0.3",
"version": "3.1.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.11.11"
},
"peerDependencies": {
"@maskito/core": "^3.0.3",
"@maskito/kit": "^3.0.3",
"@maskito/core": "^3.1.0",
"@maskito/kit": "^3.1.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": "3.0.3",
"version": "3.1.0",
"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.3",
"@maskito/core": "^3.1.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": "3.0.3",
"version": "3.1.0",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -34,7 +34,7 @@
"vue": "3.5.11"
},
"peerDependencies": {
"@maskito/core": "^3.0.3",
"@maskito/core": "^3.1.0",
"vue": ">=3.0.0"
}
}

0 comments on commit ef40479

Please sign in to comment.