From 92334974c56f1e7f1d6b026e2f3b8ee7adc29bf4 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Mon, 10 Jun 2019 12:40:06 +0100 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 8 ++++++++ LICENSE.md | 2 +- websocket-driver.gemspec | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bb391b..8bfbc30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### 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 +- 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 diff --git a/LICENSE.md b/LICENSE.md index d18ebc8..08707a6 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -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 diff --git a/websocket-driver.gemspec b/websocket-driver.gemspec index 465fcfc..a70eb7a 100644 --- a/websocket-driver.gemspec +++ b/websocket-driver.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'websocket-driver' - s.version = '0.7.0' + s.version = '0.7.1' s.summary = 'WebSocket protocol handler with pluggable I/O' s.author = 'James Coglan' s.email = 'jcoglan@gmail.com'