Skip to content

Commit

Permalink
Gem version 1.2.4. See the changelog for details.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmallard committed Jun 25, 2012
1 parent d3f9633 commit 73560a4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rdoc
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,11 @@
== 1.2.4 20120625

* Add ability for client to request flush on write to the connection (Issue #45)
* Add ability for client to retrieve heartbeat intervals and counters
* Fix I/O errors with heartbeats and multithreaded clients (Issue #46)
* Enhance tests for heartbeats
* Correct typos and clarify comments in many examples

== 1.2.3 20120616 == 1.2.3 20120616


* Fix UnsupportedProtocol on connect to a 1.0 broker * Fix UnsupportedProtocol on connect to a 1.0 broker
Expand Down
2 changes: 2 additions & 0 deletions README.rdoc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ An implementation of the Stomp protocol for Ruby. See:


===New ===New


* Gem version 1.2.2. Stomp 1.1 heartbeat fix, autoflush capability, miscellaneous fixes
* Gem version 1.2.3. Miscellaneous fixes, see changelog for details. * 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.
Expand Down Expand Up @@ -106,4 +107,5 @@ The following people have contributed to Stomp:
* James Pearson * James Pearson
* Craig * Craig
* Tommy Bishop * Tommy Bishop
* Jeremy Gailor


2 changes: 1 addition & 1 deletion lib/stomp/version.rb
Original file line number Original file line Diff line number Diff line change
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 = 3 PATCH = 4
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}" STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end end
end end
4 changes: 2 additions & 2 deletions stomp.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@


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


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 = %q{2012-06-16} s.date = %q{2012-06-25}
s.description = %q{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"]
Expand Down

0 comments on commit 73560a4

Please sign in to comment.