Skip to content

Commit

Permalink
Bumped 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed May 6, 2015
1 parent 161d7c4 commit a03faa9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "msgpack5",
"version": "2.1.0",
"version": "2.2.0",
"description": "A msgpack v5 implementation for node.js and the browser, with extension points",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions test/64-bits-unsigned-integers.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ var test = require('tape').test
test('encoding/decoding 64-bits big-endian unsigned integers', function(t) {
var encoder = msgpack()
, allNum = []
, base = 0xffffffff

allNum.push(0xffffffff)

allNum.push(0xffffffffeeeee)


allNum.forEach(function(num) {
t.test('encoding ' + num, function(t) {
var buf = encoder.encode(num)
Expand Down

0 comments on commit a03faa9

Please sign in to comment.