Skip to content

Commit

Permalink
10.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Dec 23, 2018
1 parent 556f54f commit b32d21e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
@@ -1,9 +1,12 @@
#### HEAD
#### 10.10.0

- `isISO8601()` strict mode now works in the browser
([#932](https://github.com/chriso/validator.js/pull/932))
- Locale fix
([#931](https://github.com/chriso/validator.js/pull/931))
- New and improved locales
([#931](https://github.com/chriso/validator.js/pull/931),
[#933](https://github.com/chriso/validator.js/pull/933),
[#947](https://github.com/chriso/validator.js/pull/947),
[#950](https://github.com/chriso/validator.js/pull/950))

#### 10.9.0

Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -155,7 +155,7 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj;

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var version = '10.9.0';
var version = '10.10.0';
var validator = {
version: version,
toDate: _toDate.default,
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "validator",
"description": "String validation and sanitization",
"version": "10.9.0",
"version": "10.10.0",
"homepage": "https://github.com/chriso/validator.js",
"files": [
"index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -96,7 +96,7 @@ import normalizeEmail from './lib/normalizeEmail';

import toString from './lib/util/toString';

const version = '10.9.0';
const version = '10.10.0';

const validator = {
version,
Expand Down
2 changes: 1 addition & 1 deletion validator.js
Expand Up @@ -2009,7 +2009,7 @@ function normalizeEmail(email, options) {
return parts.join('@');
}

var version = '10.9.0';
var version = '10.10.0';
var validator = {
version: version,
toDate: toDate,
Expand Down
2 changes: 1 addition & 1 deletion validator.min.js

Large diffs are not rendered by default.

0 comments on commit b32d21e

Please sign in to comment.