Skip to content

Commit 5b5de69

Browse files
committed
Version v3.6.1 released.
New features v3.6.0 -> v3.6.1 include: - Update documents Signed-off-by: LiosK <[email protected]>
1 parent 828221e commit 5b5de69

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ let uuid = UUID.generate();
1919
```typescript
2020
// TypeScript
2121
import * as UUID from "uuidjs";
22-
let uuid: string = UUID.generate();
22+
let str: string = UUID.generate();
23+
let obj: UUID.UUID = UUID.genV4();
2324
```
2425

2526
# DESCRIPTION

dist/uuid.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: v3.6.0
2+
Version: v3.6.1
33
The MIT License: Copyright (c) 2010-2017 LiosK.
44
*/
55
var UUID;

doc/UUID.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2062,7 +2062,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="UUID.html
20622062
<br class="clear">
20632063

20642064
<footer>
2065-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:15:32 GMT-0400 (EDT)
2065+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:47:13 GMT-0400 (EDT)
20662066
</footer>
20672067

20682068
<script> prettyPrint(); </script>

doc/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ <h1>SYNOPSIS</h1><pre class="prettyprint source lang-html"><code>&lt;!-- HTML5 -
5050
let UUID = require(&quot;uuidjs&quot;);
5151
let uuid = UUID.generate();</code></pre><pre class="prettyprint source lang-typescript"><code>// TypeScript
5252
import * as UUID from &quot;uuidjs&quot;;
53-
let uuid: string = UUID.generate();</code></pre><h1>DESCRIPTION</h1><p>UUID.js is a JavaScript/ECMAScript library to generate RFC 4122 compliant Universally Unique IDentifiers (UUIDs). This library supports both version 4 UUIDs (UUIDs from random numbers) and version 1 UUIDs (time-based UUIDs), and provides an object-oriented interface to print a generated or parsed UUID in a variety of forms.</p>
53+
let str: string = UUID.generate();
54+
let obj: UUID.UUID = UUID.genV4();</code></pre><h1>DESCRIPTION</h1><p>UUID.js is a JavaScript/ECMAScript library to generate RFC 4122 compliant Universally Unique IDentifiers (UUIDs). This library supports both version 4 UUIDs (UUIDs from random numbers) and version 1 UUIDs (time-based UUIDs), and provides an object-oriented interface to print a generated or parsed UUID in a variety of forms.</p>
5455
<h1>FEATURES</h1><ul>
5556
<li>Generates version 4 UUIDs (UUIDs from random numbers) and version 1 UUIDs (time-based UUIDs)</li>
5657
<li>Provides an object-oriented interface to print various string representations of a generated or parsed UUID</li>
@@ -110,7 +111,7 @@ <h1>INSTALL</h1><p>Download <code>src/uuid.js</code> or call <code>npm install u
110111
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
111112
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
112113
<p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
113-
<h1>AUTHOR</h1><p>LiosK <a href="&#x6d;&#97;&#105;&#108;&#116;&#x6f;&#58;&#x63;&#x6f;&#x6e;&#116;&#97;&#x63;&#x74;&#x40;&#109;&#97;&#105;&#108;&#x2e;&#x6c;&#105;&#111;&#x73;&#107;&#46;&#x6e;&#101;&#116;">&#x63;&#x6f;&#x6e;&#116;&#97;&#x63;&#x74;&#x40;&#109;&#97;&#105;&#108;&#x2e;&#x6c;&#105;&#111;&#x73;&#107;&#46;&#x6e;&#101;&#116;</a></p>
114+
<h1>AUTHOR</h1><p>LiosK <a href="&#109;&#97;&#x69;&#x6c;&#x74;&#x6f;&#58;&#x63;&#x6f;&#x6e;&#116;&#x61;&#99;&#x74;&#64;&#x6d;&#97;&#105;&#108;&#46;&#108;&#105;&#111;&#115;&#107;&#x2e;&#x6e;&#101;&#116;">&#x63;&#x6f;&#x6e;&#116;&#x61;&#99;&#x74;&#64;&#x6d;&#97;&#105;&#108;&#46;&#108;&#105;&#111;&#115;&#107;&#x2e;&#x6e;&#101;&#116;</a></p>
114115
<h1>SEE ALSO</h1><ul>
115116
<li><a href="https://www.ietf.org/rfc/rfc4122.txt">RFC 4122</a></li>
116117
<li><a href="https://github.com/LiosK/UUID.js">GitHub Repository</a></li>
@@ -151,7 +152,7 @@ <h2>uuid.js</h2>
151152

152153

153154
<dt class="tag-version">Version:</dt>
154-
<dd class="tag-version"><ul class="dummy"><li>v3.6.0</li></ul></dd>
155+
<dd class="tag-version"><ul class="dummy"><li>v3.6.1</li></ul></dd>
155156

156157

157158

@@ -240,7 +241,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="UUID.html
240241
<br class="clear">
241242

242243
<footer>
243-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:15:32 GMT-0400 (EDT)
244+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:47:13 GMT-0400 (EDT)
244245
</footer>
245246

246247
<script> prettyPrint(); </script>

doc/uuid.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h1 class="page-title">Source: uuid.js</h1>
3131
*
3232
* @file
3333
* @author LiosK
34-
* @version v3.6.0
34+
* @version v3.6.1
3535
* @license The MIT License: Copyright (c) 2010-2017 LiosK.
3636
*/
3737

@@ -435,7 +435,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="UUID.html
435435
<br class="clear">
436436

437437
<footer>
438-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:15:32 GMT-0400 (EDT)
438+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Oct 16 2017 06:47:13 GMT-0400 (EDT)
439439
</footer>
440440

441441
<script> prettyPrint(); </script>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uuidjs",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
44
"title": "UUID.js",
55
"description": "RFC-compliant UUID Generator for JavaScript",
66
"main": "src/uuid.js",

src/uuid.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @file
55
* @author LiosK
6-
* @version v3.6.0
6+
* @version v3.6.1
77
* @license The MIT License: Copyright (c) 2010-2017 LiosK.
88
*/
99

src/uuid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @file
55
* @author LiosK
6-
* @version v3.6.0
6+
* @version v3.6.1
77
* @license The MIT License: Copyright (c) 2010-2017 LiosK.
88
*/
99

0 commit comments

Comments
 (0)