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.rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubb committed May 27, 2010
1 parent 813a562 commit fcfbce1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
source 'http://rubygems.org'

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

group :runtime do # Runtime dependencies (as in the gemspec)

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ begin

gem.rubyforge_project = 'datamapper'

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

gem.add_development_dependency 'rspec', '~> 1.3'
end
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0.rc2
1.0.0.rc3
4 changes: 2 additions & 2 deletions bin/dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
require 'optparse'
require 'rubygems'

gem 'dm-core', '1.0.0.rc2'
gem 'dm-core', '1.0.0.rc3'
require 'dm-core'

gem 'dm-cli', '1.0.0.rc2'
gem 'dm-cli', '1.0.0.rc3'
require 'dm-cli'

DataMapper::CLI::BinDir = File.dirname(__FILE__)
Expand Down
10 changes: 5 additions & 5 deletions dm-cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

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

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Wayne E. Seguin"]
s.date = %q{2010-05-23}
s.date = %q{2010-05-27}
s.default_executable = %q{dm}
s.description = %q{DataMapper plugin allowing interaction with models through a CLI}
s.email = %q{wayneeseguin [a] gmail [d] com}
Expand Down Expand Up @@ -57,14 +57,14 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc3"])
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc3"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc3"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
end
Expand Down

0 comments on commit fcfbce1

Please sign in to comment.