diff --git a/README.md b/README.md index eb0a305..09b6e90 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Parse and serialize minecraft packets, plus authentication and encryption. ## Features - * Supports Minecraft version 1.6.1 + * Supports Minecraft version 1.6.2 * Parses all packets and emits events with packet fields as JavaScript objects. * Send a packet by supplying fields as a JavaScript object. @@ -273,6 +273,10 @@ NODE_DEBUG="minecraft-protocol" node [...] ## History +### 0.11.1 + + * support minecraft protocol 1.6.2 / protocol version 74 (thanks [Matt Bell](https://github.com/mappum)) + ### 0.11.0 * support minecraft protocol 1.6.1 / protocol version 73 (thanks [Matt Bell](https://github.com/mappum)) diff --git a/lib/protocol.js b/lib/protocol.js index 8f2a413..e7dd27d 100644 --- a/lib/protocol.js +++ b/lib/protocol.js @@ -1394,8 +1394,8 @@ function parsePacket(buffer, isServer) { } module.exports = { - version: 73, - minecraftVersion: '1.6.1', + version: 74, + minecraftVersion: '1.6.2', sessionVersion: 13, parsePacket: parsePacket, createPacketBuffer: createPacketBuffer, diff --git a/package.json b/package.json index 9d21ab0..683827d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minecraft-protocol", - "version": "0.11.0", + "version": "0.11.1", "description": "Parse and serialize minecraft packets, plus authentication and encryption.", "main": "index.js", "repository": {