Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Commit

Permalink
Version bump to 1.0.0.rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubb committed May 19, 2010
1 parent a4bf19a commit bccc9b3
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'http://rubygems.org'

DATAMAPPER = 'git://github.com/datamapper'
DM_VERSION = '~> 1.0.0.rc1'
DM_VERSION = '~> 1.0.0.rc2'

group :runtime do

Expand Down
18 changes: 9 additions & 9 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -116,21 +116,21 @@ Using {bundler}[http://github.com/carlhuda/bundler] it's really easy to get an a
git 'git://github.com/snusnu/dm-core.git', 'branch' => 'active_support'
git "git://github.com/snusnu/dm-more.git", 'branch' => 'active_support'

gem 'dm-core', '~> 1.0.0.rc1'
gem 'dm-types', '~> 1.0.0.rc1'
gem 'dm-validations', '~> 1.0.0.rc1'
gem 'dm-constraints', '~> 1.0.0.rc1'
gem 'dm-aggregates', '~> 1.0.0.rc1'
gem 'dm-timestamps', '~> 1.0.0.rc1'
gem 'dm-migrations', '~> 1.0.0.rc1'
gem 'dm-observer', '~> 1.0.0.rc1'
gem 'dm-core', '~> 1.0.0.rc2'
gem 'dm-types', '~> 1.0.0.rc2'
gem 'dm-validations', '~> 1.0.0.rc2'
gem 'dm-constraints', '~> 1.0.0.rc2'
gem 'dm-aggregates', '~> 1.0.0.rc2'
gem 'dm-timestamps', '~> 1.0.0.rc2'
gem 'dm-migrations', '~> 1.0.0.rc2'
gem 'dm-observer', '~> 1.0.0.rc2'

# Use this instead of git if you're working on dm-rails
# path '/full/path/to/your/local/clone/of/dm-rails'

git 'git://github.com/datamapper/dm-rails.git'

gem 'dm-rails', '~> 1.0.0.rc1'
gem 'dm-rails', '~> 1.0.0.rc2'

git 'git://github.com/rspec/rspec.git'
git 'git://github.com/rspec/rspec-core.git'
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ begin
gem.homepage = 'http://github.com/datamapper/dm-rails'
gem.authors = [ 'Martin Gamsjaeger (snusnu)', 'Dan Kubb' ]

gem.add_dependency 'dm-core', '~> 1.0.0.rc1'
gem.add_dependency 'dm-active_model', '~> 1.0.0.rc1'
gem.add_dependency 'dm-core', '~> 1.0.0.rc2'
gem.add_dependency 'dm-active_model', '~> 1.0.0.rc2'

gem.add_dependency 'activesupport', '~> 3.0.0.beta3'
gem.add_dependency 'actionpack', '~> 3.0.0.beta3'
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0.rc1
1.0.0.rc2
14 changes: 7 additions & 7 deletions dm-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{dm-rails}
s.version = "1.0.0.rc1"
s.version = "1.0.0.rc2"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Martin Gamsjaeger (snusnu)", "Dan Kubb"]
Expand Down Expand Up @@ -62,21 +62,21 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
s.add_runtime_dependency(%q<dm-active_model>, ["~> 1.0.0.rc1"])
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_runtime_dependency(%q<dm-active_model>, ["~> 1.0.0.rc2"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0.beta3"])
s.add_runtime_dependency(%q<actionpack>, ["~> 3.0.0.beta3"])
s.add_runtime_dependency(%q<railties>, ["~> 3.0.0.beta3"])
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
s.add_dependency(%q<dm-active_model>, ["~> 1.0.0.rc1"])
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<dm-active_model>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0.beta3"])
s.add_dependency(%q<actionpack>, ["~> 3.0.0.beta3"])
s.add_dependency(%q<railties>, ["~> 3.0.0.beta3"])
end
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc1"])
s.add_dependency(%q<dm-active_model>, ["~> 1.0.0.rc1"])
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<dm-active_model>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0.beta3"])
s.add_dependency(%q<actionpack>, ["~> 3.0.0.beta3"])
s.add_dependency(%q<railties>, ["~> 3.0.0.beta3"])
Expand Down

0 comments on commit bccc9b3

Please sign in to comment.