CHANGELOG.md in simple_form-2.0.2 vs CHANGELOG.md in simple_form-2.0.3

- old
+ new

@@ -1,4 +1,37 @@ +## 2.0.3 + +### enhancements + * Allow to specify custom wrappers for input types. + ([@nashby](https://github.com/nashby)) + Closes [#636](https://github.com/plataformatec/simple_form/issues/636) + * Use separate config file to do bootstrap specific configuration. + ([@nashby](https://github.com/nashby)) + +### bug fix + * Allow to specify checked and uncked values for boolean input + ([@nashby](https://github.com/nashby)). + Closes [#643](https://github.com/plataformatec/simple_form/issues/643) + * Allow to add additional classes only for wrapper. + ([@nashby](https://github.com/nashby)). + Closes [#629](https://github.com/plataformatec/simple_form/issues/629) + * 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 `:collection` 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 * Add `:inline_label` option to nested booleans to display text inline with checkbox. If the value is `true` it uses the default label text. ([@ehoch](https://github.com/ehoch))