diff --git a/README.md b/README.md index fc59c83..4f91bf2 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.2 + * Supports Minecraft version 1.6.4 * Parses all packets and emits events with packet fields as JavaScript objects. * Send a packet by supplying fields as a JavaScript object. @@ -293,6 +293,10 @@ NODE_DEBUG="minecraft-protocol" node [...] ## History +### 0.11.6 + + * Updated protocol version to support 1.6.4 (thanks [Matt Bell](https://github.com/mappum)) + ### 0.11.5 * Fix handling of some conditional fields (thanks [Florian Wesch](https://github.com/dividuum)) diff --git a/lib/protocol.js b/lib/protocol.js index 6f954c3..39f9641 100644 --- a/lib/protocol.js +++ b/lib/protocol.js @@ -1469,8 +1469,8 @@ function parsePacket(buffer, isServer) { } module.exports = { - version: 74, - minecraftVersion: '1.6.2', + version: 78, + minecraftVersion: '1.6.4', sessionVersion: 13, parsePacket: parsePacket, createPacketBuffer: createPacketBuffer, diff --git a/package.json b/package.json index 7cb66c8..f702457 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minecraft-protocol", - "version": "0.11.5", + "version": "0.11.6", "description": "Parse and serialize minecraft packets, plus authentication and encryption.", "main": "index.js", "repository": {