Skip to content

Commit

Permalink
Bump up version, fix rake files where it was necessary for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin authored and mattetti committed Dec 13, 2008
1 parent 3885688 commit d997a94
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require 'fileutils'
include FileUtils


gems = %w[merb_activerecord merb_sequel merb_test_unit merb_stories merb_screw_unit merb_jquery]
gems = %w[merb_activerecord merb_sequel merb_test_unit merb_stories merb_screw_unit merb_jquery merb_builder]

# Implement standard Rake::GemPackageTask tasks - see merb.thor
task :clobber_package do; FileUtils.rm_rf('pkg'); end
Expand Down
4 changes: 2 additions & 2 deletions merb_activerecord/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_activerecord"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -35,7 +35,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO Generators) + Dir.glob("{lib}/**/*")
end
Expand Down
4 changes: 2 additions & 2 deletions merb_builder/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_builder"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -35,7 +35,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.add_dependency('builder', '>= 2.0.0')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
Expand Down
4 changes: 2 additions & 2 deletions merb_jquery/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_jquery"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -35,7 +35,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end
Expand Down
4 changes: 2 additions & 2 deletions merb_laszlo/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_laszlo"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = "0.9.9" + PKG_BUILD
GEM_VERSION = "0.9.10" + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -37,7 +37,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile) + Dir.glob("{lib}/**/*")
end
Expand Down
4 changes: 2 additions & 2 deletions merb_parts/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_parts"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -35,7 +35,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib}/**/*")
end
Expand Down
6 changes: 3 additions & 3 deletions merb_screw_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_screw_unit"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -36,8 +36,8 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-slices', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.add_dependency('merb-slices', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,app,public,stubs}/**/*")
end
Expand Down
4 changes: 2 additions & 2 deletions merb_sequel/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GEM_EMAIL = "[email protected], [email protected]"

GEM_NAME = "merb_sequel"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -36,7 +36,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency("merb-core", ">= 0.9.9")
s.add_dependency("merb-core", ">= 0.9.10")
s.add_dependency("sequel", ">= 1.4.0")
s.files = %w(LICENSE README Rakefile TODO Generators) + Dir.glob("{lib}/**/*")
end
Expand Down
2 changes: 1 addition & 1 deletion merb_stories/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_stories"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand Down
4 changes: 2 additions & 2 deletions merb_test_unit/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GEM_EMAIL = "[email protected]"

GEM_NAME = "merb_test_unit"
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.9") + PKG_BUILD
GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.10") + PKG_BUILD

RELEASE_NAME = "REL #{GEM_VERSION}"

Expand All @@ -36,7 +36,7 @@ spec = Gem::Specification.new do |s|
s.author = GEM_AUTHOR
s.email = GEM_EMAIL
s.homepage = PROJECT_URL
s.add_dependency('merb-core', '>= 0.9.9')
s.add_dependency('merb-core', '>= 0.9.10')
s.require_path = 'lib'
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,test_unit_generators}/**/*")
end
Expand Down

0 comments on commit d997a94

Please sign in to comment.