mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-14 19:04:59 -05:00
Merge pull request #293 from rom1504/prepare_for_release
prepare 0.16.0 release
This commit is contained in:
commit
f68bee7ed3
2 changed files with 16 additions and 1 deletions
15
HISTORY.md
15
HISTORY.md
|
@ -1,5 +1,20 @@
|
|||
# History
|
||||
|
||||
## 0.16.0 (unreleased)
|
||||
|
||||
* cross version support exposed : version option in createClient and createServer
|
||||
* expose createSerializer and createDeserializer, createPacketBuffer and parsePacketData are now available in serializer/parser instances (BREAKING CHANGE)
|
||||
* stop exposing packetFields, packetNames, packetIds, packetStates. That data is available by requiring minecraft-data package (BREAKING CHANGE)
|
||||
* don't expose version anymore but supportedVersions (BREAKING CHANGE)
|
||||
* use node-yggdrasil : index.js now doesn't expose yggdrasil, use node-yggdrasil directly if needed (BREAKING CHANGE)
|
||||
* createServers's beforePing option can now takes an async function
|
||||
* enable compression by default in createServer
|
||||
* update ursa to get node4 (and node5) compatibility
|
||||
* lot of internal changes : using the new general serializing/parsing library ProtoDef
|
||||
* fix compression in proxy example
|
||||
* fix gamemode3 in proxy
|
||||
* generate the same uuidv3 than the vanilla server does in offline mode
|
||||
|
||||
## 0.15.0
|
||||
|
||||
* UUIDs are now strings instead of arrays. (BREAKING CHANGE)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "minecraft-protocol",
|
||||
"version": "0.15.1-GH",
|
||||
"version": "0.16.0-GH",
|
||||
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in a new issue