diff options
Diffstat (limited to 'lib/net/ssh/version.rb')
-rw-r--r-- | lib/net/ssh/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index be871b2..0a2c7b3 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -51,11 +51,11 @@ module Net; module SSH MINOR = 0 # The tiny component of this version of the Net::SSH library - TINY = 1 + TINY = 2 # The prerelease component of this version of the Net::SSH library # nil allowed - PRE = nil + PRE = "rc1" # The current version of the Net::SSH library as a Version instance CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact) |