Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
This version contains the Rails 4 support 🌟 and drops Rails 3.2.x support
and Ruby 1.8 💥

💚💛❤️💜💙
  • Loading branch information
rafaelfranca committed Sep 21, 2013
1 parent 474e6f1 commit 028e762
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 19 deletions.
24 changes: 7 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
## master
## 3.0.0

### enhancements
* New `input_class` global config option to set a class to be generated in all inputs.
* Collection tags accept html attributes as the last element of collection [@nashby](https://github.com/nashby)
* 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
Expand All @@ -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.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion lib/simple_form/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SimpleForm
VERSION = "3.0.0.rc".freeze
VERSION = "3.0.0".freeze
end

0 comments on commit 028e762

Please sign in to comment.