From 622bc4368d474f4014ef2b4f537d496f2d83d430 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Fri, 31 Jul 2020 17:15:50 +0100 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 7 +++++++ LICENSE.md | 2 +- faye-websocket.gemspec | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c60d41c..a073e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### 0.11.0 / 2020-07-31 + +- Implement TLS certificate verification and enable it by default on client + connections +- Add a `:tls` option to the client with sub-fields `:root_cert_file` and + `:verify_peer` for configuring TLS verification + ### 0.10.9 / 2019-06-13 - Use the EventMachine API rather than `IO#write` to write data; this uses the diff --git a/LICENSE.md b/LICENSE.md index 08707a6..9475f06 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright 2010-2019 James Coglan +Copyright 2010-2020 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/faye-websocket.gemspec b/faye-websocket.gemspec index b0ace49..f490b19 100644 --- a/faye-websocket.gemspec +++ b/faye-websocket.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'faye-websocket' - s.version = '0.10.9' + s.version = '0.11.0' s.summary = 'Standards-compliant WebSocket server and client' s.author = 'James Coglan' s.email = 'jcoglan@gmail.com'