Release 3.0.0

This version contains the Rails 4 support 🌟 and drops Rails 3.2.x support
and Ruby 1.8 💥

💚💛❤️💜💙
This commit is contained in:
Rafael Mendonça França 2013-09-21 12:05:58 -03:00
parent 474e6f1d74
commit 028e762f00
3 changed files with 9 additions and 19 deletions

View File

@ -1,4 +1,4 @@
## master
## 3.0.0
### enhancements
* New `input_class` global config option to set a class to be generated in all inputs.
@ -6,6 +6,12 @@
* Change default `:value_method` of collection tags from `:last` to `:second` [@nashby](https://github.com/nashby)
* Support `Proc` object in `:conditions` option of associations [@bradly](https://github.com/bradly)
* `input_field` supports `html5` component [@nashby](https://github.com/nashby)
* Make `field_error_proc` configurable [@dfens](https://github.com/dfens)
* Support to Rails 4.
* Removed deprecated methods.
* SimpleForm no longer sets the `size` attribute automatically and the `default_input_size` setting
is now deprecated.
* Support to aria-required attribute to required fields [@ckundo](https://github.com/ckundo)
### bug fix
* Make `DateTimeInput#label_target` method to work with string values in `I18n.t('date.order')` (default
@ -14,24 +20,8 @@
* Add "checkbox" class to the label of boolean input when there is no `:label`
in `generate_additional_classes_for` config option [@nashby](https://github.com/nashby)
* Support models with digits in their names [@webgago](https://github.com/webgago)
## 3.0.0.rc
### enhancements
* Make `field_error_proc` configurable [@dfens](https://github.com/dfens)
### bug fix
* Remove deprecation warnings related to `Relation#all` from Rails 4.
* Form builder can be used outside the context of a controller [@jasonwebster](https://github.com/jasonwebster)
* Skip pattern attribute when using `validates_format_of` with `:without` option [@glebm](https://github.com/glebm)
## 3.0.0.beta1
### enhancements
* Support to Rails 4.
* Removed deprecated methods.
* SimpleForm no longer sets the `size` attribute automatically and the `default_input_size` setting
is now deprecated.
* Support to aria-required attribute to required fields [@ckundo](https://github.com/ckundo)
Please check [v2.1](https://github.com/plataformatec/simple_form/blob/v2.1/CHANGELOG.md) for previous changes.

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
simple_form (3.0.0.rc)
simple_form (3.0.0)
actionpack (>= 4.0.0, < 4.1)
activemodel (>= 4.0.0, < 4.1)

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "3.0.0.rc".freeze
VERSION = "3.0.0".freeze
end