From 40102f6158db913d4893494ed097e42b41cd38b6 Mon Sep 17 00:00:00 2001 From: Romain Beaumont Date: Sat, 3 Nov 2018 18:11:00 +0100 Subject: [PATCH] make 1.13.2 the tested and supported 1.13.x version --- 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 bde0834..3fa133a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Parse and serialize minecraft packets, plus authentication and encryption. ## Features * 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), - 1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), and 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1) + 1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), and 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2) * 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 df31358..e8c28df 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "endian-toggle": "^0.0.0", "lodash.get": "^4.1.2", "lodash.merge": "^4.3.0", - "minecraft-data": "^2.33.0", + "minecraft-data": "^2.34.0", "node-rsa": "^0.4.2", "prismarine-nbt": "^1.2.0", "protodef": "^1.6.7", diff --git a/src/version.js b/src/version.js index 74c8726..569293e 100644 --- a/src/version.js +++ b/src/version.js @@ -2,5 +2,5 @@ module.exports = { defaultVersion: '1.13.1', - supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.1', '1.13.2-pre1'] + supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2'] }