From df83143684fbbd45cd277e1d6e87a3cfc63fe083 Mon Sep 17 00:00:00 2001 From: Romain Beaumont Date: Sat, 18 Jun 2016 17:08:18 +0200 Subject: [PATCH] update supported versions list --- README.md | 2 +- package.json | 2 +- src/version.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91b7768..09f2a50 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Parse and serialize minecraft packets, plus authentication and encryption. ## Features - * Supports Minecraft version 1.7.10, 1.8.8 and 1.9 (15w40b, 1.9 and 1.9.1-pre2) + * Supports Minecraft PC version 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4) and 1.10 (16w20a, 1.10-pre1, 1.10) * Parses all packets and emits events with packet fields as JavaScript objects. * Send a packet by supplying fields as a JavaScript object. diff --git a/package.json b/package.json index 83bf0ac..8ed5261 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "endian-toggle": "^0.0.0", "lodash.get": "^4.1.2", "lodash.merge": "^4.3.0", - "minecraft-data": "^2.0.0", + "minecraft-data": "^2.5.0", "prismarine-nbt": "^1.0.0", "protodef": "^1.2.3", "readable-stream": "^2.0.5", diff --git a/src/version.js b/src/version.js index de52e4e..9231824 100644 --- a/src/version.js +++ b/src/version.js @@ -2,5 +2,5 @@ module.exports={ defaultVersion:'1.8', - supportedVersions:['1.7','1.8','15w40b','1.9'] + supportedVersions:['1.7','1.8','1.9','1.10'] };