summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano.mandelbaum@gmail.com>2013-09-11 09:40:42 -0700
committerdelano <delano.mandelbaum@gmail.com>2013-09-11 09:40:42 -0700
commite3c3b6542580f15fb1a0a6ffad5383f2373ab43a (patch)
tree73f1527b207883ee565098182ecfc67534d26360
parentf0570418fbbc911b7406c2d9eba6f7493b949801 (diff)
downloadnet-ssh-2.7.tar.gz
Version bumpv2.7.02.72.6
-rw-r--r--CHANGES.txt9
-rw-r--r--lib/net/ssh/version.rb4
-rw-r--r--net-ssh.gemspec6
3 files changed, 15 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6adf341..12ddd27 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,13 @@
+
+=== 2.7.0 / 11 Sep 2013
+
+* Fix for 'Could not parse PKey: no start line' error on private keys with passphrases (issue #101) [metametaclass]
+* Automatically forward environment variables defined in OpenSSH config files [fnordfish]
+* Guard against socket.gets being nil in Net::SSH::Proxy::HTTP [krishicks]
+* Implemented experimental keepalive feature [noric]
+
+
=== 2.6.8 / 6 Jul 2013
* Added support for host wildcard substitution [GabKlein]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 3c93342..651fe2c 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 = 6
+ MINOR = 7
# The tiny component of this version of the Net::SSH library
- TINY = 8
+ 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 8a0a164..2c474c5 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -5,11 +5,11 @@
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "2.6.8"
+ s.version = "2.7.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
- s.date = "2013-07-06"
+ s.date = "2013-09-11"
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 = [
@@ -126,12 +126,14 @@ Gem::Specification.new do |s|
"test/configs/multihost",
"test/configs/nohost",
"test/configs/numeric_host",
+ "test/configs/send_env",
"test/configs/substitutes",
"test/configs/wild_cards",
"test/connection/test_channel.rb",
"test/connection/test_session.rb",
"test/known_hosts/github",
"test/manual/test_forward.rb",
+ "test/start/test_options.rb",
"test/start/test_transport.rb",
"test/test_all.rb",
"test/test_buffer.rb",