From d76a55eba739e58079264410b5a287a4c16fc8bb Mon Sep 17 00:00:00 2001 From: Nicholas Humfrey Date: Sun, 16 Apr 2017 12:14:12 +0100 Subject: [PATCH] Updated NEWS and bumped up version for 0.5.0 release --- NEWS.md | 15 +++++++++++++++ lib/mqtt/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 1018b2a..46654de 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,21 @@ Ruby MQTT NEWS ============== +Ruby MQTT Version 0.5.0 (2016-04-16) +------------------------------------ + +* Switched default protocol version to 3.1.1 +* Added support for Server Name Identification (SNI) +* Fix for unescaping user/password in URI +* Fix for bug in MQTT::Proxy class +* Add the ability to ignore retained packets when subscribed. +* Fix problem of wrong Puback packet ID +* Don't keepalive ping if disconnected +* Immediately close socket after failed Connack +* FakeServer improvements +* Fix for working with mathn library. + + Ruby MQTT Version 0.4.0 (2016-06-27) ------------------------------------ diff --git a/lib/mqtt/version.rb b/lib/mqtt/version.rb index 4eea572..c0e14e4 100644 --- a/lib/mqtt/version.rb +++ b/lib/mqtt/version.rb @@ -1,4 +1,4 @@ module MQTT # The version number of the MQTT gem - VERSION = "0.4.0" + VERSION = "0.5.0" end