diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-08-09 20:23:58 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-08-09 20:23:58 +0200 |
commit | bf8d3dc80f6103fdd8e2a629880ab0470d516d70 (patch) | |
tree | f86b42af46a5ed5d9ab94291f17ca37aea802142 | |
parent | 58459cf3ebcf3a7029fca4c3761dcb8fa23b95c3 (diff) |
Start working on 0.9.13
-rw-r--r-- | Rakefile | 2 | ||||
-rwxr-xr-x | bin/rbot | 2 | ||||
-rwxr-xr-x | launch_here.rb | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ task :default => [:buildext] spec = Gem::Specification.new do |s| s.name = 'rbot' - s.version = '0.9.12' + s.version = '0.9.13' s.summary = <<-EOF A modular ruby IRC bot. EOF @@ -47,7 +47,7 @@ require 'etc' require 'getoptlong' require 'fileutils' -$version ||= '0.9.12' +$version ||= '0.9.13-git' $version_timestamp ||= 0 $opts = Hash.new diff --git a/launch_here.rb b/launch_here.rb index a96efa66..8f9243ed 100755 --- a/launch_here.rb +++ b/launch_here.rb @@ -8,7 +8,7 @@ puts "Running from #{SCM_DIR}" $:.unshift File.join(SCM_DIR, 'lib') -$version = '0.9.12' +$version = '0.9.13-git' pwd = Dir.pwd begin |