diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-29 22:13:35 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-29 22:14:46 +0200 |
commit | c1f17680af01f558b1d2a47a7744ec8cb71524eb (patch) | |
tree | 7d2fb6c26a8953cc5beb7421d75c74f1775a76c7 | |
parent | 1e43f97c27e6c55d312c14a2b9ed676b6bdb01ce (diff) |
Start working on 0.9.12
-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.11' + s.version = '0.9.12' s.summary = <<-EOF A modular ruby IRC bot. EOF @@ -47,7 +47,7 @@ require 'etc' require 'getoptlong' require 'fileutils' -$version ||= '0.9.11' +$version ||= '0.9.12-git' $version_timestamp ||= 0 $opts = Hash.new diff --git a/launch_here.rb b/launch_here.rb index c6a0fdc9..aa044887 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.11' +$version = '0.9.12-git' pwd = Dir.pwd begin |