Release 0.7.0

This commit is contained in:
Andrew Kelley 2013-01-30 20:04:45 -05:00
parent df3f95e1ff
commit ef9917b252
2 changed files with 14 additions and 1 deletions

View File

@ -231,6 +231,19 @@ correct data type.
## History
### 0.7.0
* `createServer`: rename `encryption-enabled` option to `encryption` to stay
consistent with the examples. (thanks roblabla)
* `createClient`: don't require both `email` and `username`.
- The `username` and `password` arguments are used to authenticate with the
official minecraft servers and determine the case-correct username. If
you have migrated your user account to a mojang login, `username` looks
like an email address.
- If you leave out the `password` argument, `username` is used to connect
directly to the server. In this case you will get kicked if the server is
in online mode.
### 0.6.7
Emit 'error' event instead of crashing when other computers abuse the

View File

@ -1,6 +1,6 @@
{
"name": "minecraft-protocol",
"version": "0.6.7",
"version": "0.7.0",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
"main": "index.js",
"repository": {