Skip to content

Commit

Permalink
chore(release): v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 26, 2024
1 parent 19effe2 commit 397af64
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 24 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
### [3.2.1](https://github.com/taiga-family/maskito/compare/v3.2.0...v3.2.1) (2024-12-26)

### 🚀 Features

- **kit**: remove circular import (#1861)
[(15ff0b8)](https://github.com/taiga-family/maskito/commit/15ff0b8558bc954ac6eda07bdb13d087fc2f3491)

### 🐞 Bug Fixes

- **kit**: `Number` should ignore `[decimalSeparator]` value if `[precision]=0` (#1908)
[(19effe2)](https://github.com/taiga-family/maskito/commit/19effe2c7218646335b2f08c53a1ed3c3f0d89a1)
- **kit**: `Number` + postfix (with leading space) adds unnecessary spaces on paste value with trailing spaces (#1865)
[(c37b1d6)](https://github.com/taiga-family/maskito/commit/c37b1d636fefee1cba17b4aa07ccdd30edc5ff66)
- **kit**: `DateRange` should accept single character date segment paste even if date and range separators are equal
(#1796) [(be6a4c3)](https://github.com/taiga-family/maskito/commit/be6a4c3c57132cf320ec462372fd8536dca4781a)

### [3.2.0](https://github.com/taiga-family/maskito/compare/v3.1.2...v3.2.0) (2024-10-29)

### 🚀 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": "3.2.0",
"version": "3.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": "3.2.0",
"version": "3.2.1",
"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.2.0"
"@maskito/core": "^3.2.1"
},
"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.2.0",
"version": "3.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": "3.2.0",
"version": "3.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": "^3.2.0"
"@maskito/core": "^3.2.1"
}
}
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.2.0",
"version": "3.2.1",
"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.17"
},
"peerDependencies": {
"@maskito/core": "^3.2.0",
"@maskito/kit": "^3.2.0",
"@maskito/core": "^3.2.1",
"@maskito/kit": "^3.2.1",
"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.2.0",
"version": "3.2.1",
"description": "The React-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -39,7 +39,7 @@
"react-test-renderer": "19.0.0"
},
"peerDependencies": {
"@maskito/core": "^3.2.0",
"@maskito/core": "^3.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": "3.2.0",
"version": "3.2.1",
"description": "The Vue-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -34,7 +34,7 @@
"vue": "3.5.13"
},
"peerDependencies": {
"@maskito/core": "^3.2.0",
"@maskito/core": "^3.2.1",
"vue": ">=3.0.0"
}
}

0 comments on commit 397af64

Please sign in to comment.