Bump version to 3.1.2

This commit is contained in:
Geoff Harcourt 2016-11-22 17:12:54 -05:00
parent 08996873c8
commit 59dfb0ef91
2 changed files with 15 additions and 1 deletions

14
NEWS.md
View File

@ -1,3 +1,17 @@
# 3.1.2
### Bug fixes
* When the `permit` matcher was used without `#on`, the controller did not use
`params#require`, the params object was duplicated, and the matcher did not
recognize the `#permit` call inside the controller. This behavior happened
because the matcher overwrote double registries with the same parameter hash
whenever ActionController::Parameters was instantiated.
* *Commit: [44c019]*
* *Issue: [#899]*
* *Pull request: [#902]*
# 3.1.1
### Bug fixes

View File

@ -1,6 +1,6 @@
module Shoulda
module Matchers
# @private
VERSION = '3.1.1'.freeze
VERSION = '3.1.2'.freeze
end
end