summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@delanotes.com>2014-05-13 10:11:24 -0400
committerdelano <delano@delanotes.com>2014-05-13 10:11:24 -0400
commit9f8607984d8e904f211cc5edb39ab2a2ca94008e (patch)
treed572ec7bc567a44b2ddc2efa2fc1209464f8705b
parent95550bbcf7cc8925b50513dee3bfaae55b3c62a5 (diff)
downloadnet-ssh-9f8607984d8e904f211cc5edb39ab2a2ca94008e.tar.gz
Version bump (2.9.1)v2.9.1latest
-rw-r--r--CHANGES.txt6
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec6
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index eaadc6e..5a37932 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,11 @@
+=== 2.9.1 / 13 May 2014
+
+* Fix for unknown response from agent on Windows with 64-bit PuTTY [chrahunt]
+* Support negative patterns in host lookup from the SSH config file [nirvdrum]
+
+
=== 2.9.0 / 30 Apr 2014
* New ciphers [chr4]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index d166b1f..b802f28 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,7 +51,7 @@ module Net; module SSH
MINOR = 9
# The tiny component of this version of the Net::SSH library
- TINY = 0
+ TINY = 1
# 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 8546788..edbbeaa 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -5,12 +5,12 @@
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "2.9.0"
+ s.version = "2.9.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
s.cert_chain = ["gem-public_cert.pem"]
- s.date = "2014-04-30"
+ s.date = "2014-05-13"
s.description = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
s.email = "net-ssh@solutious.com"
s.extra_rdoc_files = [
@@ -129,6 +129,7 @@ Gem::Specification.new do |s|
"test/configs/exact_match",
"test/configs/host_plus",
"test/configs/multihost",
+ "test/configs/negative_match",
"test/configs/nohost",
"test/configs/numeric_host",
"test/configs/send_env",
@@ -138,6 +139,7 @@ Gem::Specification.new do |s|
"test/connection/test_session.rb",
"test/known_hosts/github",
"test/manual/test_forward.rb",
+ "test/manual/test_pageant.rb",
"test/start/test_connection.rb",
"test/start/test_options.rb",
"test/start/test_transport.rb",