Bump version to 0.7.1

This commit is contained in:
James Coglan
2019-06-10 12:24:00 +01:00
parent a96b9037d0
commit b5ac856443
3 changed files with 12 additions and 2 deletions
+10
View File
@@ -1,3 +1,13 @@
### 0.7.1 / 2019-06-10
- Catch any exceptions produced while generating a handshake response and send a
`400 Bad Request` response to the client
- Pick the RFC-6455 protocol version if the request contains any of the headers
used by that version
- Use the `Buffer.alloc()` and `Buffer.from()` functions instead of the unsafe
`Buffer()` constructor
- Handle errors encountered while handling malformed draft-76 requests
### 0.7.0 / 2017-09-11
- Add `ping` and `pong` to the set of events users can listen to
+1 -1
View File
@@ -1,4 +1,4 @@
Copyright 2010-2017 James Coglan
Copyright 2010-2019 James Coglan
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
+1 -1
View File
@@ -7,7 +7,7 @@
"websocket"
],
"license": "Apache-2.0",
"version": "0.7.0",
"version": "0.7.1",
"engines": {
"node": ">=0.8.0"
},