Skip to content

Commit

Permalink
10.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Jan 15, 2019
1 parent c8bb935 commit c0b905e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,7 @@
#### HEAD
#### 10.11.0

- Fix imports like `import .. from "validator/lib/.."`
([#961](https://github.com/chriso/validator.js/pull/961))
- New locale
([#958](https://github.com/chriso/validator.js/pull/958))

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.10.0';
var version = '10.11.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.10.0",
"version": "10.11.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.10.0';
const version = '10.11.0';

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

var version = '10.10.0';
var version = '10.11.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 c0b905e

Please sign in to comment.