summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rdoc5
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 8b58c4c..5b90578 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,5 +1,10 @@
+=== 2.0.15 / 03 Sep 2009
+
+* Scale back IO#select patch so it mutexes only zero-timeout calls [Daniel Azuma, Will Bryant]
+
+
=== 2.0.14 / 28 Aug 2009
* Fix for IO#select threading bug in Ruby 1.8 (LH-1) [Daniel Azuma]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 684b2e8..263f36e 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,7 +51,7 @@ module Net; module SSH
MINOR = 0
# The tiny component of this version of the Net::SSH library
- TINY = 14
+ TINY = 15
# The current version of the Net::SSH library as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index 08a400a..a7ac88a 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -1,7 +1,7 @@
@spec = Gem::Specification.new do |s|
s.name = "net-ssh"
s.rubyforge_project = 'net-ssh'
- s.version = "2.0.14"
+ s.version = "2.0.15"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]