Skip to content

Commit

Permalink
11.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Jul 4, 2019
1 parent 2f62084 commit 56cd1f0
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,19 @@
#### 11.1.0

- Code coverage improvements
([#1024](https://github.com/chriso/validator.js/pull/1024))
- New and improved locales
([#1035](https://github.com/chriso/validator.js/pull/1035),
[#1040](https://github.com/chriso/validator.js/pull/1040),
[#1041](https://github.com/chriso/validator.js/pull/1041),
[#1048](https://github.com/chriso/validator.js/pull/1048),
[#1049](https://github.com/chriso/validator.js/pull/1049),
[#1052](https://github.com/chriso/validator.js/pull/1052),
[#1054](https://github.com/chriso/validator.js/pull/1054),
[#1055](https://github.com/chriso/validator.js/pull/1055),
[#1056](https://github.com/chriso/validator.js/pull/1056),
[#1057](https://github.com/chriso/validator.js/pull/1057))

#### 11.0.0

- Added a `isBase32()` validator
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 = '11.0.0';
var version = '11.1.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": "11.0.0",
"version": "11.1.0",
"homepage": "https://github.com/chriso/validator.js",
"files": [
"index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -95,7 +95,7 @@ import isWhitelisted from './lib/isWhitelisted';

import normalizeEmail from './lib/normalizeEmail';

const version = '11.0.0';
const version = '11.1.0';

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

var version = '11.0.0';
var version = '11.1.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 56cd1f0

Please sign in to comment.