Bumped protocol version for 1.6.2

This commit is contained in:
Matt Bell 2013-07-10 21:29:38 -07:00
parent fe38206fad
commit f3657f74e0
3 changed files with 8 additions and 4 deletions

View file

@ -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))

View file

@ -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,

View file

@ -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": {