summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2016-03-12 12:09:45 +0100
committerMiklos Fazekas <mfazekas@szemafor.com>2016-03-12 12:09:45 +0100
commit116f6dac2fdd621d3e9354a3064517f3cacd21ba (patch)
treebde702eba817672ebca5be98f83acddb1f6bc58e /lib
parent3852c73cbb33c28950c3250f1c4e7a9f24856df3 (diff)
downloadnet-ssh-multi-116f6dac2fdd621d3e9354a3064517f3cacd21ba.tar.gz
1.3.0rc1 prepare
Diffstat (limited to 'lib')
-rw-r--r--lib/net/ssh/multi/version.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/net/ssh/multi/version.rb b/lib/net/ssh/multi/version.rb
index 9854f32..c2f085e 100644
--- a/lib/net/ssh/multi/version.rb
+++ b/lib/net/ssh/multi/version.rb
@@ -7,13 +7,17 @@ module Net; module SSH; module Multi
MAJOR = 1
# The minor component of the library's version
- MINOR = 2
+ MINOR = 3
# The tiny component of the library's version
- TINY = 1
+ TINY = 0
+
+ # The prerelease component of this version of the Net::SSH library
+ # nil allowed
+ PRE = "rc1"
# The library's version as a Version instance
- CURRENT = new(MAJOR, MINOR, TINY)
+ CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)
# The library's version as a String instance
STRING = CURRENT.to_s