Update CHANGELOG

This commit is contained in:
Rafael Mendonça França 2012-07-13 15:24:13 -03:00
parent 5548b2cb28
commit 6d4af552ba
3 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,28 @@
## 2.1.0.dev
### enhancements
* Use separate config file to do bootstrap specific configuration.
([@nashby](https://github.com/nashby))
### bug fix
* Boolean hidden field now respects `:name` attribute when nested.
([@amiel](https://github.com/amiel)).
Closes [#619](https://github.com/plataformatec/simple_form/issues/619)
* Prevent generation of `class=""`. ([@pkmiec](https://github.com/pkmiec))
* Fix namespace html propagation to single wrapper of `label` and `input`
* Association creates blank select if `:colocetion` is `nil`.
([@nashby](https://github.com/nashby)).
Closes [#595](https://github.com/plataformatec/simple_form/issues/595)
* Fix readonly attribute check. ([@retoo](https://github.com/retoo))
* Fix error when `collection_check_boxes` used with `form_for` instead of `simple_form_for`.
([@RohanM](https://github.com/RohanM))
* Ensure ActionView::Base.field_error_proc is preserved when exceptions occur within
`with_simple_form_field_error_proc`.
([@jim](https://github.com/jim))
* Handle array of strings in `:checked` option.
([@nashby](https://github.com/nashby))
## 2.0.2
### enhancements

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
simple_form (2.0.2)
simple_form (2.1.0.dev)
actionpack (~> 3.0)
activemodel (~> 3.0)

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "2.0.2".freeze
VERSION = "2.1.0.dev".freeze
end