mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
releases v1.1.0
This commit is contained in:
parent
f75a9b01af
commit
684a7cfe49
3 changed files with 18 additions and 4 deletions
13
History.rdoc
13
History.rdoc
|
@ -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!
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
:minor: 0
|
||||
:minor: 1
|
||||
:build:
|
||||
:patch: 1
|
||||
:patch: 0
|
||||
:major: 1
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue