Skip to content

Commit

Permalink
bump version to 2.0.0.a3
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Feb 4, 2010
1 parent c8e00ed commit 75749c8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/rspec/expectations/version.rb
Expand Up @@ -5,7 +5,7 @@ module Version # :nodoc:
MAJOR = 2
MINOR = 0
TINY = 0
PRE = 'a2'
PRE = 'a3'

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')

Expand Down
16 changes: 8 additions & 8 deletions rspec-expectations.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rspec-expectations}
s.version = "2.0.0.a2"
s.version = "2.0.0.a3"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["David Chelimsky", "Chad Humphries"]
s.date = %q{2010-01-31}
s.date = %q{2010-02-03}
s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
s.extra_rdoc_files = [
"README.markdown"
Expand Down Expand Up @@ -137,15 +137,15 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec-core>, [">= 2.0.0.a2"])
s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.a2"])
s.add_development_dependency(%q<rspec-core>, [">= 2.0.0.a3"])
s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.a3"])
else
s.add_dependency(%q<rspec-core>, [">= 2.0.0.a2"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a2"])
s.add_dependency(%q<rspec-core>, [">= 2.0.0.a3"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a3"])
end
else
s.add_dependency(%q<rspec-core>, [">= 2.0.0.a2"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a2"])
s.add_dependency(%q<rspec-core>, [">= 2.0.0.a3"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a3"])
end
end

0 comments on commit 75749c8

Please sign in to comment.