Skip to content

Commit

Permalink
Merge pull request #259 from shimataro/develop
Browse files Browse the repository at this point in the history
version 1.0.0-rc.6
  • Loading branch information
shimataro authored Sep 10, 2018
2 parents 3902861 + 3002aaf commit 5f90d85
Show file tree
Hide file tree
Showing 14 changed files with 597 additions and 611 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.0-rc.6] - 2018-09-10
### Added
* `adjuster.AdjusterError` - for TypeScript
* `adjuster.STRING.PATTERN.HTTP` - for test of HTTP/HTTPS URL

### Changed
* collection types for TypeScript code

## [1.0.0-rc.5] - 2018-09-02
### Removed
* `adjuster.ipv4()` - use `adjuster.string().pattern(adjuster.STRING.PATTERN.IPV4)` instead
Expand Down Expand Up @@ -213,7 +221,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [0.1.0] - 2018-04-18
* First release.

[Unreleased]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.5...HEAD
[Unreleased]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.6...HEAD
[1.0.0-rc.6]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.5...v1.0.0-rc.6
[1.0.0-rc.5]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.4...v1.0.0-rc.5
[1.0.0-rc.4]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.3...v1.0.0-rc.4
[1.0.0-rc.3]: https://github.com/shimataro/node-adjuster/compare/v1.0.0-rc.2...v1.0.0-rc.3
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ import adjuster from "adjuster";

## Reference
### types and constants
#### `AdjusterError`
#### `adjuster.AdjusterError`
The `AdjusterError` object represents an error when trying to adjust invalid value.

##### ambient declaration
Expand Down Expand Up @@ -1160,6 +1160,7 @@ You can also use `adjuster.STRING.PATTERN` constants
|constant|explanation|
|--------|-----------|
|`adjuster.STRING.PATTERN.EMAIL`|email address that follows [RFC5321](https://tools.ietf.org/html/rfc5321) / [RFC5322](https://tools.ietf.org/html/rfc5322)|
|`adjuster.STRING.PATTERN.HTTP`|HTTP/HTTPS URL|
|`adjuster.STRING.PATTERN.IPV4`|IPv4 address|
|`adjuster.STRING.PATTERN.IPV6`|IPv6 address|
|`adjuster.STRING.PATTERN.URI`|URI that follows [RFC3986](https://tools.ietf.org/html/rfc3986)|
Expand Down
Loading

0 comments on commit 5f90d85

Please sign in to comment.