diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c7efd..86015f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Stomp Gem Change Log +## 1.4.10 20200819 + +* Fix issue #165 +* Reinstate autoflush behavior +* Correct _receive method signature +* Update version + +* More debugging messages in netio.rb. + ## 1.4.9 20191116 * More debugging messages in netio.rb. diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e96fcd9..a207421 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -205,7 +205,7 @@ Rafael Rosa 2010-03-23 -(0125) +(0126) diff --git a/lib/stomp/version.rb b/lib/stomp/version.rb index 6a5f993..4d48b40 100644 --- a/lib/stomp/version.rb +++ b/lib/stomp/version.rb @@ -6,8 +6,8 @@ module Stomp module Version #:nodoc: all MAJOR = 1 MINOR = 4 - PATCH = "9" - MODLEVEL = "-m.1" + PATCH = "10" + MODLEVEL = "" STRING = "#{MAJOR}.#{MINOR}.#{PATCH}#{MODLEVEL}" # Alternate version string Version = STRING diff --git a/stomp.gemspec b/stomp.gemspec index cce28f0..598dce8 100644 --- a/stomp.gemspec +++ b/stomp.gemspec @@ -2,16 +2,16 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- -# stub: stomp 1.4.9 ruby lib +# stub: stomp 1.4.10 ruby lib Gem::Specification.new do |s| s.name = "stomp".freeze - s.version = "1.4.9" + s.version = "1.4.10" s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Brian McCallister".freeze, "Marius Mathiesen".freeze, "Thiago Morello".freeze, "Guy M. Allard".freeze] - s.date = "2019-11-16" + s.date = "2020-08-19" s.description = "Ruby client for the Stomp messaging protocol.".freeze s.email = ["brianm@apache.org".freeze, "marius@stones.com".freeze, "morellon@gmail.com".freeze, "allard.guy.m@gmail.com".freeze] s.executables = ["catstomp".freeze, "stompcat".freeze] @@ -21,6 +21,7 @@ Gem::Specification.new do |s| ] s.files = [ "CHANGELOG.md", + "CONTRIBUTORS.md", "LICENSE", "README.md", "Rakefile", @@ -56,6 +57,7 @@ Gem::Specification.new do |s| "examples/logexamp.rb", "examples/putget_file.rb", "examples/putget_rephdrs.rb", + "examples/showver.rb", "examples/ssl/SSL.md", "examples/ssl/misc/ssl_ctxoptions.rb", "examples/ssl/misc/ssl_newparm.rb",