summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano.mandelbaum@gmail.com>2013-02-06 12:27:06 -0800
committerdelano <delano.mandelbaum@gmail.com>2013-02-06 12:27:06 -0800
commit1de7611a7f7cedbe7a4c6cf3798c88d00637582d (patch)
tree46a3c2834e95f8d90cb4c7e594d53d62ad554f94
parent04db93e5c06af7fa48752f7cb908acbe305ad48c (diff)
downloadnet-ssh-gateway-1de7611a7f7cedbe7a4c6cf3798c88d00637582d.tar.gz
Dep fix to stop the world from falling downv1.2.0
-rw-r--r--CHANGES.txt2
-rw-r--r--lib/net/ssh/gateway.rb4
-rw-r--r--net-ssh-gateway.gemspec2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6b2e500..fbbb402 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-=== 1.1.1 / 06 Feb 2013
+=== 1.2.0 / 06 Feb 2013
* Added public cert. All gem releases are now signed. See INSTALL in readme.
diff --git a/lib/net/ssh/gateway.rb b/lib/net/ssh/gateway.rb
index 03f60a6..a10e238 100644
--- a/lib/net/ssh/gateway.rb
+++ b/lib/net/ssh/gateway.rb
@@ -40,10 +40,10 @@ class Net::SSH::Gateway
MAJOR = 1
# The minor component of the library's version
- MINOR = 1
+ MINOR = 2
# The tiny component of the library's version
- TINY = 2
+ TINY = 0
# The library's version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
diff --git a/net-ssh-gateway.gemspec b/net-ssh-gateway.gemspec
index 07497ac..85aeebe 100644
--- a/net-ssh-gateway.gemspec
+++ b/net-ssh-gateway.gemspec
@@ -5,7 +5,7 @@
Gem::Specification.new do |s|
s.name = "net-ssh-gateway"
- s.version = "1.1.2"
+ s.version = "1.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamis Buck", "Delano Mandelbaum"]