Skip to content

Commit 57f7e7b

Browse files
committed
Versioning, npm
1 parent 6cd385c commit 57f7e7b

8 files changed

+12
-9
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bytebuffer",
3-
"version": "3.0.0-pre",
3+
"version": "3.0.0-RC1",
44
"author": "Daniel Wirtz <[email protected]>",
55
"description": "A full-featured ByteBuffer implementation using typed arrays.",
66
"main": "ByteBuffer.js",

dist/ByteBufferAB.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
* @const
118118
* @expose
119119
*/
120-
ByteBuffer.VERSION = "3.0.0-pre";
120+
ByteBuffer.VERSION = "3.0.0-RC1";
121121

122122
/**
123123
* Little endian constant that can be used instead of its boolean value. Evaluates to `true`.
@@ -2068,7 +2068,8 @@
20682068
* Overwrites this ByteBuffer's contents with the specified value. Contents are the bytes between
20692069
* {@link ByteBuffer#offset} and {@link ByteBuffer#limit}.
20702070
* @param {number|string} value Byte value to fill with. If given as a string, the first character is used.
2071-
* @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}.
2071+
* @param {number=} begin Begin offset. Will use and increase {@link ByteBuffer#offset} by the number of bytes
2072+
* written if omitted. defaults to {@link ByteBuffer#offset}.
20722073
* @param {number=} end End offset, defaults to {@link ByteBuffer#limit}.
20732074
* @returns {!ByteBuffer} this
20742075
* @expose

dist/ByteBufferAB.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ByteBufferAB.min.js.gz

0 Bytes
Binary file not shown.

dist/ByteBufferAB.min.map

+1-1
Large diffs are not rendered by default.

dist/ByteBufferNB.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module.exports = (function() {
109109
* @const
110110
* @expose
111111
*/
112-
ByteBuffer.VERSION = "3.0.0-pre";
112+
ByteBuffer.VERSION = "3.0.0-RC1";
113113

114114
/**
115115
* Little endian constant that can be used instead of its boolean value. Evaluates to `true`.
@@ -2215,7 +2215,8 @@ module.exports = (function() {
22152215
* Overwrites this ByteBuffer's contents with the specified value. Contents are the bytes between
22162216
* {@link ByteBuffer#offset} and {@link ByteBuffer#limit}.
22172217
* @param {number|string} value Byte value to fill with. If given as a string, the first character is used.
2218-
* @param {number=} begin Begin offset, defaults to {@link ByteBuffer#offset}.
2218+
* @param {number=} begin Begin offset. Will use and increase {@link ByteBuffer#offset} by the number of bytes
2219+
* written if omitted. defaults to {@link ByteBuffer#offset}.
22192220
* @param {number=} end End offset, defaults to {@link ByteBuffer#limit}.
22202221
* @returns {!ByteBuffer} this
22212222
* @expose

docs/module-ByteBuffer.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6095,7 +6095,8 @@ <h5>Parameters:</h5>
60956095

60966096

60976097

6098-
<td class="description last"><p>Begin offset, defaults to ByteBuffer#offset.</p></td>
6098+
<td class="description last"><p>Begin offset. Will use and increase ByteBuffer#offset by the number of bytes
6099+
written if omitted. defaults to ByteBuffer#offset.</p></td>
60996100
</tr>
61006101

61016102

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bytebuffer",
3-
"version": "3.0.0-pre",
3+
"version": "3.0.0-RC1",
44
"author": "Daniel Wirtz <[email protected]>",
55
"description": "The swiss army knife for binary data in JavaScript.",
66
"main": "ByteBuffer.js",

0 commit comments

Comments
 (0)