From fac3ccbead20b28ac68652e8f11c8e99f34bf48c Mon Sep 17 00:00:00 2001 From: Ben Mabey Date: Fri, 8 May 2009 18:44:21 -0600 Subject: [PATCH] Version bump to 0.2.0 --- History.txt | 11 +++++++++-- VERSION.yml | 4 ++-- database_cleaner.gemspec | 12 +++++++----- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/History.txt b/History.txt index e01f9b8..e407844 100644 --- a/History.txt +++ b/History.txt @@ -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 diff --git a/VERSION.yml b/VERSION.yml index 2953502..8eb882f 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,4 +1,4 @@ --- -:patch: 3 +:patch: 0 :major: 0 -:minor: 1 +:minor: 2 diff --git a/database_cleaner.gemspec b/database_cleaner.gemspec index c49863c..a17d98e 100644 --- a/database_cleaner.gemspec +++ b/database_cleaner.gemspec @@ -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