Skip to content

Commit db6eba7

Browse files
committed
2.0
1 parent a2a2979 commit db6eba7

File tree

9 files changed

+43
-43
lines changed

9 files changed

+43
-43
lines changed

ByteBuffer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
* @const
112112
* @expose
113113
*/
114-
ByteBuffer.VERSION = "2.0.0-pre";
114+
ByteBuffer.VERSION = "2.0.0";
115115

116116
/**
117117
* Default buffer capacity of `16`. The ByteBuffer will be automatically resized by a factor of 2 if required.
@@ -140,7 +140,7 @@
140140
/**
141141
* Long class for int64 support. May be undefined if the Long class has not been loaded and int64 support is
142142
* not available.
143-
* @type {?Long}
143+
* @type {Long|undefined}
144144
* @const
145145
* @expose
146146
*/

ByteBuffer.min.js

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

ByteBuffer.min.map

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

ByteBuffer.noexpose.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
* @type {string}
104104
* @const
105105
*/
106-
ByteBuffer.VERSION = "2.0.0-pre";
106+
ByteBuffer.VERSION = "2.0.0";
107107

108108
/**
109109
* Default buffer capacity of `16`. The ByteBuffer will be automatically resized by a factor of 2 if required.
@@ -129,7 +129,7 @@
129129
/**
130130
* Long class for int64 support. May be undefined if the Long class has not been loaded and int64 support is
131131
* not available.
132-
* @type {?Long}
132+
* @type {Long|undefined}
133133
* @const
134134
*/
135135
ByteBuffer.Long = Long;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides a full-featured ByteBuffer implementation using typed arrays. It's one
44
[ProtoBuf.js](https://github.com/dcodeIO/ProtoBuf.js) and the [PSON](https://github.com/dcodeIO/PSON) reference
55
implementation.
66

7-
*Note:* The API behind toHex and toString has changed with ByteBuffer 2.0.0, which is a generally revised release, in
7+
*Note:* The API behind #toHex and #toString has changed with ByteBuffer 2, which is a generally revised release, in
88
favor of making this more intuitive.
99

1010
What can it do?

bower.json

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

docs/ByteBuffer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ <h4 class="name" id="LITTLE_ENDIAN"><span class="type-signature">&lt;static, con
340340

341341

342342
<dt>
343-
<h4 class="name" id="Long"><span class="type-signature">&lt;static, constant> </span>Long<span class="type-signature"> :Long</span></h4>
343+
<h4 class="name" id="Long"><span class="type-signature">&lt;static, constant> </span>Long<span class="type-signature"> :Long|undefined</span></h4>
344344

345345

346346
</dt>

package.json

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

src/ByteBuffer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
/**
141141
* Long class for int64 support. May be undefined if the Long class has not been loaded and int64 support is
142142
* not available.
143-
* @type {?Long}
143+
* @type {Long|undefined}
144144
* @const
145145
* @expose
146146
*/

0 commit comments

Comments
 (0)