summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano.mandelbaum@gmail.com>2012-09-19 13:00:41 -0400
committerdelano <delano.mandelbaum@gmail.com>2012-09-19 13:00:41 -0400
commit47246da87d4270b2ef0a826f3c877bc691384253 (patch)
tree5f86e1ad2725df65150a16d3735b833bc015b15d
parent6d9fcc90acb0843a1ef89b2007103066ebfd961e (diff)
downloadnet-ssh-47246da87d4270b2ef0a826f3c877bc691384253.tar.gz
Release 2.6.0v2.6.0
-rw-r--r--CHANGELOG.rdoc9
-rw-r--r--lib/net/ssh/version.rb4
-rw-r--r--net-ssh.gemspec2
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 0b9e58c..cae5fe7 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,13 @@
+=== 2.6.0 / 19 Sep 2012
+
+* Use OpenSSL::PKey.read to read arbitrary private key. [nagachika]
+* Check availability of UNIXSocket and UNIXServer for Windows [Nobuhiro IMAI]
+* Bump version to 2.5.3 and depend on newer jruby-pageant version for Java 1.5 compat. [arturaz]
+* Implementation of the "none"-authentication method [dubspeed]
+* Add class for stricter host key verification [Andy Brody]
+
+
=== 2.5.2 / 25 May 2012
* Fix for Net::SSH::KnownHosts::SUPPORTED_TYPE [Marco Sandrini]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index a6894fc..21492a1 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -48,10 +48,10 @@ module Net; module SSH
MAJOR = 2
# The minor component of this version of the Net::SSH library
- MINOR = 5
+ MINOR = 6
# The tiny component of this version of the Net::SSH library
- TINY = 2
+ TINY = 0
# 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 aa3649d..5d4ea70 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.5.3"
+ s.version = "2.6.0"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary + " It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
s.authors = ["Jamis Buck", "Delano Mandelbaum"]