Version bump to 0.2.0

This commit is contained in:
Ben Mabey 2009-05-08 18:44:21 -06:00
parent 5dfb24de4a
commit fac3ccbead
3 changed files with 18 additions and 9 deletions

View File

@ -3,7 +3,14 @@
=== New features
=== Bufixes
== 0.1.3 2009-04-30
== 0.2.0 2009-05-08 - The Datamapper Release
=== New features
* DataMapper strategies (Martin Gamsjaeger)
* Transaction
* Truncation - working SQLite3, MySQL adapters. Experimental Postgres adapter (not tested).
== 0.1.3 2009-04-30
=== New features
* PostgresSQLAdapter for AR to support the truncation strategy. (Alberto Perdomo)
@ -14,7 +21,7 @@
=== New features
* JDBC Adapter to enable AR truncation strategy to work. (Kamal Fariz Mahyuddin)
== 0.1.1 2009-03-04 - Initial Release ( Ben Mabey )
== 0.1.1 2009-03-04 - Initial Release (Ben Mabey)
* Basic infrastructure
* Features, RSpec code examples
* ActiveRecord strategies

View File

@ -1,4 +1,4 @@
---
:patch: 3
:patch: 0
:major: 0
:minor: 1
:minor: 2

View File

@ -2,12 +2,12 @@
Gem::Specification.new do |s|
s.name = %q{database_cleaner}
s.version = "0.1.3"
s.version = "0.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ben Mabey"]
s.date = %q{2009-04-30}
s.description = %q{Database Cleaner is a set of strategies for cleaning your database in Ruby.}
s.date = %q{2009-05-08}
s.description = %q{TODO}
s.email = %q{ben@benmabey.com}
s.extra_rdoc_files = [
"LICENSE",
@ -34,6 +34,7 @@ Gem::Specification.new do |s|
"lib/database_cleaner/cucumber.rb",
"lib/database_cleaner/data_mapper/transaction.rb",
"lib/database_cleaner/data_mapper/truncation.rb",
"lib/database_cleaner/truncation_base.rb",
"spec/database_cleaner/active_record/truncation_spec.rb",
"spec/database_cleaner/configuration_spec.rb",
"spec/spec.opts",
@ -44,14 +45,15 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.2}
s.summary = %q{Database Cleaner is a set of strategies for cleaning your database in Ruby.}
s.summary = %q{TODO}
s.test_files = [
"spec/database_cleaner/active_record/truncation_spec.rb",
"spec/database_cleaner/configuration_spec.rb",
"spec/spec_helper.rb",
"examples/features/step_definitions/example_steps.rb",
"examples/features/support/env.rb",
"examples/lib/activerecord.rb"
"examples/lib/activerecord.rb",
"examples/lib/datamapper.rb"
]
if s.respond_to? :specification_version then