From 028e762f00645fcd89ef213c9c74d9bfcf7222f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Sat, 21 Sep 2013 12:05:58 -0300 Subject: [PATCH] Release 3.0.0 This version contains the Rails 4 support :star2: and drops Rails 3.2.x support and Ruby 1.8 :collision: :green_heart::yellow_heart::heart::purple_heart::blue_heart: --- CHANGELOG.md | 24 +++++++----------------- Gemfile.lock | 2 +- lib/simple_form/version.rb | 2 +- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce4ad761..50d1a38b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Gemfile.lock b/Gemfile.lock index b030783f..46d7040a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index e2788f88..7b9bda35 100644 --- a/lib/simple_form/version.rb +++ b/lib/simple_form/version.rb @@ -1,3 +1,3 @@ module SimpleForm - VERSION = "3.0.0.rc".freeze + VERSION = "3.0.0".freeze end