mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
releases v1.3.0
This commit is contained in:
parent
35bd646903
commit
8d7f72ffc9
3 changed files with 15 additions and 3 deletions
12
History.rdoc
12
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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
:minor: 2
|
||||
:minor: 3
|
||||
:build:
|
||||
:patch: 0
|
||||
:major: 1
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue