Prepare for 3.1.0 release

This commit is contained in:
Rafael Mendonça França 2014-11-25 15:53:40 -02:00
parent 542bc0d6ef
commit 803389b593
3 changed files with 5 additions and 11 deletions

View File

@ -1,15 +1,7 @@
## master (unreleased)
## 3.1.0
### enhancements
* Update foundation generator to version 5. [@jorge-d](https://github.com/jorge-d)
### bug fix
* Fix `full_error` when the attribute is an association. [@mvdamme](https://github.com/jorge-d)
* Fix suppport to `:namespace` and `:index` options for nested check boxes and radio buttons when the attribute is an association.
## 3.1.0.rc2
### enhancements
* Add mapping to `uuid` columns.
* Add custom namespaces for custom inputs feature. [@vala](https://github.com/vala)
* Add `:unless_blank` option to the wrapper API. [@IanVaughan](https://github.com/IanVaughan)
@ -39,6 +31,8 @@
* The default form class can now be overridden with `html: { :class }`. [@rmm5t](https://github.com/rmm5t)
### bug fix
* Fix `full_error` when the attribute is an association. [@mvdamme](https://github.com/jorge-d)
* Fix suppport to `:namespace` and `:index` options for nested check boxes and radio buttons when the attribute is an association.
* Collection input that uses automatic collection translation properly sets checked values.
Closes [#971](https://github.com/plataformatec/simple_form/issues/971) [@nashby](https://github.com/nashby)
* Collection input generates `required` attribute if it has `prompt` option. [@nashby](https://github.com/nashby)

View File

@ -43,7 +43,7 @@ GIT
PATH
remote: .
specs:
simple_form (3.1.0.rc2)
simple_form (3.1.0)
actionpack (~> 4.0)
activemodel (~> 4.0)

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "3.1.0.rc2".freeze
VERSION = "3.1.0".freeze
end