Skip to content

Commit

Permalink
Gem version 1.2.3. See the change log for details.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmallard committed Jun 16, 2012
1 parent f00d333 commit 037f596
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 20 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,15 @@
== 1.2.3 20120616

* Fix UnsupportedProtocol on connect to a 1.0 broker
* Add Client#poll method
* Add help to stompcat and catstomp
* Allow password to be set for private SSL key
* Update comments to reflect new repository URL
* Reformat changelog dates to ISO8601
* Fix SSL connection failures using JRuby
* Use symbols, not strings for all header keys
* Add IPV6 to IPV4 failover for dual homed systems when requested

== 1.2.2 20120324 == 1.2.2 20120324


* Major performance improvement for read of messages without content-length header * Major performance improvement for read of messages without content-length header
Expand Down
17 changes: 5 additions & 12 deletions README.rdoc
Expand Up @@ -10,6 +10,7 @@ An implementation of the Stomp protocol for Ruby. See:


===New ===New


* Gem version 1.2.3. Miscellaneous fixes, see changelog for details.
* Gem version 1.2.2. Performance and more SSL enhancements. * Gem version 1.2.2. Performance and more SSL enhancements.
* Full support of SSL certificates is announced as of gem version 1.2.1. * Full support of SSL certificates is announced as of gem version 1.2.1.
* Support of Stomp protocol level 1.1 is announced as of gem version 1.2.0. * Support of Stomp protocol level 1.1 is announced as of gem version 1.2.0.
Expand Down Expand Up @@ -45,6 +46,7 @@ See the change log for details.


], ],
# These are the default parameters, don't need to be set # These are the default parameters, don't need to be set
:reliable => true, # true for hash login
:initial_reconnect_delay => 0.01, :initial_reconnect_delay => 0.01,
:max_reconnect_delay => 30.0, :max_reconnect_delay => 30.0,
:use_exponential_back_off => true, :use_exponential_back_off => true,
Expand Down Expand Up @@ -81,7 +83,7 @@ Up until March 2009 the project was maintained and primarily developed by Brian


The following people have contributed to Stomp: The following people have contributed to Stomp:


* Brian McCaliister * Brian McCallister
* Glenn Rempe <glenn@rempe.us> * Glenn Rempe <glenn@rempe.us>
* jstrachan * jstrachan
* Marius Mathiesen <marius.mathiesen@gmail.com> * Marius Mathiesen <marius.mathiesen@gmail.com>
Expand All @@ -102,15 +104,6 @@ The following people have contributed to Stomp:
* R.I. Pienaar * R.I. Pienaar
* tworker * tworker
* James Pearson * James Pearson

* Craig
= Announcements * Tommy Bishop

In the next version of the gem, the dates in CHANGELOG.rdoc will be changed from:

* yyyy-dd-mm

to:

* ISO8601 format (yyyymmdd)



2 changes: 1 addition & 1 deletion lib/stomp/version.rb
Expand Up @@ -4,7 +4,7 @@ module Stomp
module Version #:nodoc: all module Version #:nodoc: all
MAJOR = 1 MAJOR = 1
MINOR = 2 MINOR = 2
PATCH = 2 PATCH = 3
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}" STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end end
end end
15 changes: 8 additions & 7 deletions stomp.gemspec
Expand Up @@ -4,13 +4,13 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "stomp" s.name = %q{stomp}
s.version = "1.2.2" s.version = "1.2.3"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian McCallister", "Marius Mathiesen", "Thiago Morello", "Guy M. Allard"] s.authors = ["Brian McCallister", "Marius Mathiesen", "Thiago Morello", "Guy M. Allard"]
s.date = "2012-05-05" s.date = %q{2012-06-16}
s.description = "Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge." s.description = %q{Ruby client for the Stomp messaging protocol. Note that this gem is no longer supported on rubyforge.}
s.email = ["brianm@apache.org", "marius@stones.com", "morellon@gmail.com", "allard.guy.m@gmail.com"] s.email = ["brianm@apache.org", "marius@stones.com", "morellon@gmail.com", "allard.guy.m@gmail.com"]
s.executables = ["catstomp", "stompcat"] s.executables = ["catstomp", "stompcat"]
s.extra_rdoc_files = [ s.extra_rdoc_files = [
Expand Down Expand Up @@ -75,12 +75,13 @@ Gem::Specification.new do |s|
"test/test_ssl.rb", "test/test_ssl.rb",
"test/tlogger.rb" "test/tlogger.rb"
] ]
s.homepage = "https://github.com/stompgem/stomp" s.homepage = %q{https://github.com/stompgem/stomp}
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = "1.8.11" s.rubygems_version = %q{1.3.7}
s.summary = "Ruby client for the Stomp messaging protocol" s.summary = %q{Ruby client for the Stomp messaging protocol}


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down

0 comments on commit 037f596

Please sign in to comment.