Skip to content

Commit

Permalink
13.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Jun 10, 2020
1 parent 55b5842 commit 5910325
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### HEAD
#### 13.1.0

- Added an `isIMEI()` validator
([#1346](https://github.com/chriso/validator.js/pull/1346))
Expand Down
2 changes: 1 addition & 1 deletion es/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import blacklist from './lib/blacklist';
import isWhitelisted from './lib/isWhitelisted';
import normalizeEmail from './lib/normalizeEmail';
import isSlug from './lib/isSlug';
var version = '13.0.0';
var version = '13.1.0';
var validator = {
version: version,
toDate: toDate,
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj;

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

var version = '13.0.0';
var version = '13.1.0';
var validator = {
version: version,
toDate: _toDate.default,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "validator",
"description": "String validation and sanitization",
"version": "13.0.0",
"version": "13.1.0",
"sideEffects": false,
"homepage": "https://github.com/chriso/validator.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ import normalizeEmail from './lib/normalizeEmail';

import isSlug from './lib/isSlug';

const version = '13.0.0';
const version = '13.1.0';

const validator = {
version,
Expand Down
2 changes: 1 addition & 1 deletion validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -2969,7 +2969,7 @@ function isSlug(str) {
return charsetRegex.test(str);
}

var version = '13.0.0';
var version = '13.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 5910325

Please sign in to comment.