releases v1.1.0

This commit is contained in:
Ben Mabey 2013-08-01 10:00:36 -06:00
parent f75a9b01af
commit 684a7cfe49
3 changed files with 18 additions and 4 deletions

View file

@ -1,3 +1,16 @@
== 1.1.0 2013-08-01
=== New Features/Changes
* schema_migrations table name is now retrieved from ActiveRecord (Kyle Stevens)
* Autoloading logic is now exposed, see PR #212 for details (Jeff Felchner)
=== Bug Fixes
* Deletion strategy works again on MySQL, had to roll back multiple statements patch.
* Fix MySqlAdapter superclass bug via class_eval loading of superclasses (Tom Meier)
* Sequel strategy fix dealing with symbol/string mismatch on table names. (Fred Wu)
== 1.0.1 2013-05-13
* Patch release to fix broken gemspec file. Sorry folks!

View file

@ -1,5 +1,5 @@
---
:minor: 0
:minor: 1
:build:
:patch: 1
:patch: 0
:major: 1

View file

@ -5,13 +5,14 @@
Gem::Specification.new do |s|
s.name = "database_cleaner"
s.version = "1.0.1"
s.version = "1.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ben Mabey"]
s.date = "2013-05-14"
s.date = "2013-08-01"
s.description = "Strategies for cleaning databases. Can be used to ensure a clean state for testing."
s.email = "ben@benmabey.com"
s.license = 'MIT'
s.extra_rdoc_files = [
"LICENSE",
"README.markdown",