Skip to content

Commit

Permalink
chore(release): 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tinkoff-bot committed Mar 9, 2023
1 parent fc58141 commit ad29010
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
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.

## [0.5.0](https://github.com/tinkoff/maskito/compare/v0.4.0...v0.5.0) (2023-03-09)

### Features

- **core:** new utility `maskitoTransform(value, maskitoOptions)`
([#177](https://github.com/tinkoff/maskito/issues/177))
([20316f1](https://github.com/tinkoff/maskito/commit/20316f15e153bfeeb45eda6406b8792e00f3238f))
- **kit:** new utility `maskitoParseNumber` ([#178](https://github.com/tinkoff/maskito/issues/178))
([fc58141](https://github.com/tinkoff/maskito/commit/fc58141625ecbdc7d804aa382a69b38bf7146fc4))

### Bug Fixes

- **kit:** `Number` mask throws an error on empty string in `thousandSeparator`
([#176](https://github.com/tinkoff/maskito/issues/176))
([cd52fad](https://github.com/tinkoff/maskito/commit/cd52fad80bc278f171dafa1709c54cba3f8fbc81))

## [0.4.0](https://github.com/tinkoff/maskito/compare/v0.3.0...v0.4.0) (2023-03-02)

### Features
Expand Down
4 changes: 2 additions & 2 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": "0.4.0",
"version": "0.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": "0.4.0",
"version": "0.5.0",
"description": "The Angular-specific Maskito's library",
"keywords": [
"mask",
Expand Down Expand Up @@ -34,7 +34,7 @@
"peerDependencies": {
"@angular/common": ">=12.0.0",
"@angular/core": ">=12.0.0",
"@maskito/core": "^0.4.0",
"@maskito/core": "^0.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": "0.4.0",
"version": "0.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": "0.4.0",
"version": "0.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 <nikita.s.barsukov@gmail.com>"
],
"peerDependencies": {
"@maskito/core": "^0.4.0"
"@maskito/core": "^0.5.0"
}
}

0 comments on commit ad29010

Please sign in to comment.