From 8d7f72ffc99befd5ce67d333a99e0cf054c24f81 Mon Sep 17 00:00:00 2001 From: Ben Mabey Date: Fri, 23 May 2014 20:39:42 -0600 Subject: [PATCH] releases v1.3.0 --- History.rdoc | 12 ++++++++++++ VERSION.yml | 2 +- database_cleaner.gemspec | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/History.rdoc b/History.rdoc index 0883389..30cdab4 100644 --- a/History.rdoc +++ b/History.rdoc @@ -1,3 +1,15 @@ +== 1.3.0 2014-05-23 + +=== New Features/Changes + * Introduced `DatabaseCleaener::cleaninng` method that takes a block. (@ethco) + * Improved Sequel support and added more tests (@ethco, @rhunter) + +=== Bug Fixes + + * Fixed an issue with the `Transaction` strategy and Active Record where application-level transactions + are not rolledback correctly. (Godfrey Chan) + * activerecord-oracle_enhanced-adapter now works again (#259, @sockmonk) + == 1.2.0 2013-10-09 A huge thanks goes to @tommeier for fixing the bug with class loading that was cuasing the wrong adapters diff --git a/VERSION.yml b/VERSION.yml index 851dbae..e456d95 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- -:minor: 2 +:minor: 3 :build: :patch: 0 :major: 1 diff --git a/database_cleaner.gemspec b/database_cleaner.gemspec index 84c52ff..ac320ea 100644 --- a/database_cleaner.gemspec +++ b/database_cleaner.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = "database_cleaner" - s.version = "1.2.0" + s.version = "1.3.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ben Mabey"] - s.date = "2013-10-09" + s.date = "2014-05-23" s.description = "Strategies for cleaning databases. Can be used to ensure a clean state for testing." s.email = "ben@benmabey.com" s.license = 'MIT'