Skip to content
This repository was archived by the owner on Dec 12, 2021. It is now read-only.

Commit feffe94

Browse files
committed
Release version 0.13.1
1 parent 648695a commit feffe94

File tree

8 files changed

+199
-131
lines changed

8 files changed

+199
-131
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "validate",
33
"description": "Declarative validations for JavaScript",
44
"main": "validate.js",
5-
"version": "0.12.0",
5+
"version": "0.13.1",
66
"moduleType": [
77
"amd",
88
"globals",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repo" : "ansman/validate.js",
66
"main" : "validate.js",
77
"scripts" : ["validate.js"],
8-
"version" : "0.12.0",
8+
"version" : "0.13.0",
99
"license" : "MIT"
1010
}
1111

docs/validate.html

Lines changed: 173 additions & 94 deletions
Large diffs are not rendered by default.

index.html

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@
406406
<li>
407407
<a href="#changelog">Changelog</a>
408408
<ul>
409+
<li><a href="https://github.com/ansman/validate.js/releases/tag/0.13.1">0.13.1</a></li>
409410
<li><a href="#changelog-0-12-0">0.12.0</a></li>
410411
<li><a href="#changelog-0-11-1">0.11.1</a></li>
411412
<li><a href="#changelog-0-11-0">0.11.0</a></li>
@@ -466,15 +467,15 @@
466467
</p>
467468
<h2 id="downloads">Downloads</h2>
468469
<div class="download">
469-
<a class="btn btn-default" download href="validate.js">Development version (0.12.0)</a>
470+
<a class="btn btn-default" download href="validate.js">Development version (0.13.1)</a>
470471
<div class="info">
471-
<span class="details">36KB, uncompressed and plenty of comments</span>
472+
<span class="details">38KB, uncompressed and plenty of comments</span>
472473
</div>
473474
</div>
474475
<div class="download">
475-
<a class="btn btn-primary" download href="validate.min.js">Production version (0.12.0)</a>
476+
<a class="btn btn-primary" download href="validate.min.js">Production version (0.13.1)</a>
476477
<div class="info">
477-
<span class="details">4.66KB, minified and gzipped</span><br>
478+
<span class="details">5.05KB, minified and gzipped</span><br>
478479
<a download href="validate.min.map">(Source map)</a>
479480
</div>
480481
</div>
@@ -493,7 +494,7 @@ <h2 id="downloads">Downloads</h2>
493494
<div id="installing">
494495
<h2>Installing</h2>
495496
<b>Browser/CDN</b>
496-
<pre><code class="html">&lt;script src="//cdnjs.cloudflare.com/ajax/libs/validate.js/0.12.0/validate.min.js"&gt;&lt;/script&gt;</code></pre>
497+
<pre><code class="html">&lt;script src="//cdnjs.cloudflare.com/ajax/libs/validate.js/0.13.1/validate.min.js"&gt;&lt;/script&gt;</code></pre>
497498
<b>Require.js/AMD</b>
498499
<pre><code class="javascript">require(["validate.js"], function(validate) {
499500
// ...
@@ -2424,29 +2425,17 @@ <h2>Utilities</h2>
24242425
</div>
24252426
<div id="changelog">
24262427
<h2>Changelog</h2>
2427-
<div id="changelog-wip">
2428+
<div id="changelog-0-13-0">
24282429
<h3>
2429-
<b class="version">WIP</b>
2430+
<b class="version">0.13.1</b>
2431+
-
2432+
<span class="date">Jun 15, 2018</span>
2433+
-
2434+
<a href="http://htmlpreview.github.com/?https://raw.github.com/ansman/validate.js/0.13.1/index.html">Docs</a>
2435+
-
2436+
<a href="https://github.com/ansman/validate.js/compare/0.12.0...0.13.1">Diff</a>
24302437
</h3>
2431-
<ul>
2432-
<li>
2433-
Fix some issues with the email validation. Thanks
2434-
<a href="https://github.com/ansman/validate.js/issues/240" target="_blank">Yusuf Aji Wibowo</a>
2435-
for reporting it.
2436-
</li>
2437-
<li>
2438-
If <code>within</code> in the exclusion validator is an object
2439-
the values are now used when formatting <code>${value}</code>
2440-
in the message. Thanks
2441-
<a href="https://github.com/ansman/validate.js/issues/215" target="_blank">Rhys Lloyd</a>
2442-
for reporting it.
2443-
</li>
2444-
<li>
2445-
There is now a type validator that will check the value's type. Thanks
2446-
<a href="https://github.com/ansman/validate.js/issues/80" target="_blank">Dmitry Kirilyuk</a>
2447-
for suggesting this.
2448-
</li>
2449-
</ul>
2438+
See https://github.com/ansman/validate.js/releases/tag/0.13.1 for the changelog.
24502439
</div>
24512440
<div id="changelog-0-12-0">
24522441
<h3>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "validate.js",
3-
"version": "0.12.0",
3+
"version": "0.13.1",
44
"author": "Nicklas Ansman <[email protected]>",
55
"description": "Declarative validations for JavaScript",
66
"main": "validate.js",

validate.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* validate.js 0.12.0
2+
* validate.js 0.13.1
33
*
4-
* (c) 2013-2017 Nicklas Ansman, 2013 Wrapp
4+
* (c) 2013-2019 Nicklas Ansman, 2013 Wrapp
55
* Validate.js may be freely distributed under the MIT license.
66
* For all details and documentation:
77
* http://validatejs.org/
@@ -52,9 +52,9 @@
5252
// The toString function will allow it to be coerced into a string
5353
version: {
5454
major: 0,
55-
minor: 12,
56-
patch: 0,
57-
metadata: "development",
55+
minor: 13,
56+
patch: 1,
57+
metadata: null,
5858
toString: function() {
5959
var version = v.format("%{major}.%{minor}.%{patch}", v.version);
6060
if (!v.isEmpty(v.version.metadata)) {

validate.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

validate.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)