summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2008-05-01 22:20:21 -0600
committerJamis Buck <jamis@37signals.com>2008-05-01 22:20:21 -0600
commit8f4fd3fe372ddcc46bac39586b6185d17bb67c51 (patch)
treee32a345f5edc4a9a5245352e924449c4ad0f3c27
parent3907db9fb490f11ca821181b412c1514ee8e0a7e (diff)
downloadnet-ssh-multi-1.0.0.tar.gz
prepping for the 1.0 releasev1.0.0
-rw-r--r--CHANGELOG.rdoc5
-rw-r--r--lib/net/ssh/multi/version.rb6
2 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 61f6b17..520491b 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,3 +1,8 @@
+=== 1.0.0 / 1 May 2008
+
+* (no changes since the last preview release)
+
+
=== 1.0 Preview Release 2 (0.99.1) / 19 Apr 2008
* Don't try to select on closed IO streams [Jamis Buck]
diff --git a/lib/net/ssh/multi/version.rb b/lib/net/ssh/multi/version.rb
index 3a7bb37..17b1a01 100644
--- a/lib/net/ssh/multi/version.rb
+++ b/lib/net/ssh/multi/version.rb
@@ -4,13 +4,13 @@ module Net; module SSH; module Multi
# A trivial class for representing the version of this library.
class Version < Net::SSH::Version
# The major component of the library's version
- MAJOR = 0
+ MAJOR = 1
# The minor component of the library's version
- MINOR = 99
+ MINOR = 0
# The tiny component of the library's version
- TINY = 1
+ TINY = 0
# The library's version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)