diff --git a/Rakefile b/Rakefile index fadebcd8..8f80936b 100644 --- a/Rakefile +++ b/Rakefile @@ -47,3 +47,8 @@ task :pgem => [:package] do Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` end + +desc "Clean up generated directories and files" +task :clean do + rm_rf "pkg" +end \ No newline at end of file diff --git a/lib/capistrano/version.rb b/lib/capistrano/version.rb index 1fcde69f..3b981b23 100644 --- a/lib/capistrano/version.rb +++ b/lib/capistrano/version.rb @@ -19,7 +19,7 @@ module Capistrano end MAJOR = 1 - MINOR = 1 + MINOR = 2 TINY = 0 STRING = [MAJOR, MINOR, TINY].join(".")