Bump version to 2.6.1

This commit is contained in:
Elliot Winkler 2014-04-30 17:52:47 -04:00
parent cdcea5adb4
commit 1511ed9161
9 changed files with 13 additions and 12 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,4 +1,4 @@
# HEAD
# 2.6.1
## Features
@ -13,10 +13,11 @@
using a very small decimal number offset rather than a whole number by
default, except if the matcher was qualified with `only_integer`. This means
that prior to 2.6.0, if your validation specified `only_integer` and you did
not, then after 2.6.0 that test now fails.
not, then after 2.6.0 that test would fail. This is now fixed.
* Fix so that ActiveRecord matchers aren't included when ActiveRecord
isn't defined (i.e. if you are using ActiveModel only).
* Fix regression in previous release where ActiveRecord matchers would not be
included when ActiveRecord wasn't defined (i.e. if you were using ActiveModel
only).
* Revert the behavior of `allow_value` changed in 2.6.0 (it will no longer raise
CouldNotClearAttribute). This was originally done as a part of a fix for

View File

@ -1,7 +1,7 @@
PATH
remote: ../
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: ../
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: ../
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: ../
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: ../
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: .././
specs:
shoulda-matchers (2.6.1.rc2)
shoulda-matchers (2.6.1)
activesupport (>= 3.0.0)
GEM

View File

@ -1,5 +1,5 @@
module Shoulda
module Matchers
VERSION = '2.6.1.rc2'.freeze
VERSION = '2.6.1'.freeze
end
end