Skip to content

Commit

Permalink
chore: first official release 🎉
Browse files Browse the repository at this point in the history
BREAKING CHANGE: First official release (v1.0.0) 🎉
  • Loading branch information
renato-bohler committed Mar 12, 2018
1 parent a3fc46b commit ddc0082
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 100 deletions.
75 changes: 0 additions & 75 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,76 +1 @@
<a name="0.4.1"></a>
## [0.4.1](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.4.0...v0.4.1) (2018-03-12)


### Bug Fixes

* fixes dependency vulnerability on examples project ([42cfc5f](https://github.com/renato-bohler/redux-form-input-masks/commit/42cfc5f))

<a name="0.4.0"></a>
# [0.4.0](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.13...v0.4.0) (2018-03-11)


### Bug Fixes

* **createNumberMask:** fixes high speed input problems on Firefox ([8d6c24a](https://github.com/renato-bohler/redux-form-input-masks/commit/8d6c24a))
* **createNumberMask:** fixes onChange called when the value didn't actually change ([c3fc1a3](https://github.com/renato-bohler/redux-form-input-masks/commit/c3fc1a3))
* **createTextMask:** fixes incorrect caret position on change ([1a1ffc2](https://github.com/renato-bohler/redux-form-input-masks/commit/1a1ffc2))
* **createTextMask:** fixes input rendering after onCompletePattern ([4dce88e](https://github.com/renato-bohler/redux-form-input-masks/commit/4dce88e))
* **utils:** adds null checking on `isPatternComplete` ([ef10d90](https://github.com/renato-bohler/redux-form-input-masks/commit/ef10d90))


### Features

* **createTextMask:** implements options validations ([374856e](https://github.com/renato-bohler/redux-form-input-masks/commit/374856e))
* **createTextMask:** implements pattern matching validation ([459383d](https://github.com/renato-bohler/redux-form-input-masks/commit/459383d))
* **createTextMask:** initial createTextMask implementation ([dd034ad](https://github.com/renato-bohler/redux-form-input-masks/commit/dd034ad))
* **utils:** implements `placeholderMatchTest` function ([636f9c5](https://github.com/renato-bohler/redux-form-input-masks/commit/636f9c5))

<a name="0.3.13"></a>
## [0.3.13](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.12...v0.3.13) (2018-03-10)


### Bug Fixes

* **createNumberMask:** fixes browser's locale not working on IE ([4467f18](https://github.com/renato-bohler/redux-form-input-masks/commit/4467f18))

<a name="0.3.12"></a>
## [0.3.12](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.11...v0.3.12) (2018-02-26)


### Bug Fixes

* **README:** updates `Milestones to v1.0.0` section ([ed83fc9](https://github.com/renato-bohler/redux-form-input-masks/commit/ed83fc9))

<a name="0.3.11"></a>
## [0.3.11](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.10...v0.3.11) (2018-02-20)


### Bug Fixes

* **dangerfile:** adds new rules to commit message validation ([1cef917](https://github.com/renato-bohler/redux-form-input-masks/commit/1cef917))

<a name="0.3.10"></a>
## [0.3.10](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.9...v0.3.10) (2018-02-20)


### Bug Fixes

* **docs:** adds theme-color to the documentations ([9da97dc](https://github.com/renato-bohler/redux-form-input-masks/commit/9da97dc))
* **travis:** changes build:docs script to before_deploy ([c5b8cc2](https://github.com/renato-bohler/redux-form-input-masks/commit/c5b8cc2))

<a name="0.3.10"></a>
## [0.3.10](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.9...v0.3.10) (2018-02-20)


### Bug Fixes

* **travis:** changes build:docs script to before_deploy ([c5b8cc2](https://github.com/renato-bohler/redux-form-input-masks/commit/c5b8cc2))

<a name="0.3.9"></a>
## [0.3.9](https://github.com/renato-bohler/redux-form-input-masks/compare/v0.3.8...v0.3.9) (2018-02-20)


### Bug Fixes

* clears changelog and tests semantic-release ([5f327a5](https://github.com/renato-bohler/redux-form-input-masks/commit/5f327a5))
25 changes: 0 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,28 +109,3 @@ const phoneMask = createTextMask({
{...phoneMask}
/>
```

## Warning

This project is still under development, I'm still setting all up for the first official release (v1.0.0). Until then, some breaking changes in v0 may occur.

### Milestones to v1.0.0

* [x] create repo basic structure;
* [x] create multi purpose dev server (gh-pages documentation and live demos);
* [x] create codesandbox.io demos;
* [x] specify an API for `createNumberMask`;
* [x] implement `createNumberMask`;
* [x] add tests and code coverage structure to the project;
* [x] implement `createNumberMask` tests;
* [x] `createNumberMask` bugfixes;
* [x] add repo workflow (Travis CI, danger, codecov, commitizen, semantic release);
* [x] add fancy badges ([#4](https://github.com/renato-bohler/redux-form-input-masks/issues/4));
* [x] add issue template ([#2](https://github.com/renato-bohler/redux-form-input-masks/issues/2));
* [x] add code of conduct ([#3](https://github.com/renato-bohler/redux-form-input-masks/issues/3));
* [x] add build process;
* [x] add contributing ([#5](https://github.com/renato-bohler/redux-form-input-masks/issues/5));
* [x] fix [#14](https://github.com/renato-bohler/redux-form-input-masks/issues/14)
* [x] specify an API for `createStringMask`, an easy and flexible string mask creator;
* [x] implement `createStringMask` and its tests;
* [ ] update documentation's codesandboxes.

0 comments on commit ddc0082

Please sign in to comment.