Release v2.1.3. Closes #1271.

This commit is contained in:
Carlos Antonio da Silva 2015-07-02 08:19:34 -03:00
parent 055a61023a
commit 239eb584fb
3 changed files with 20 additions and 19 deletions

View File

@ -1,6 +1,7 @@
## master
## 2.1.3
### bug fix
* Fix method reflection for Ruby 2.1+. [@badosu](https://github.com/badosu)
* Collection input generates `required` attribute if it has `prompt` option. [@nashby](https://github.com/nashby)
* Use the given name in `input_html` for the hidden field in `collection_check_boxes` [@angelic](https://github.com/angelic)
* Add "checkbox" class to the label of boolean input when there is no `:label`

View File

@ -1,16 +1,16 @@
PATH
remote: .
specs:
simple_form (2.1.2)
simple_form (2.1.3)
actionpack (~> 3.0)
activemodel (~> 3.0)
GEM
remote: http://rubygems.org/
specs:
actionpack (3.2.21)
activemodel (= 3.2.21)
activesupport (= 3.2.21)
actionpack (3.2.22)
activemodel (= 3.2.22)
activesupport (= 3.2.22)
builder (~> 3.0.0)
erubis (~> 2.7.0)
journey (~> 1.0.4)
@ -18,10 +18,10 @@ GEM
rack-cache (~> 1.2)
rack-test (~> 0.6.1)
sprockets (~> 2.2.1)
activemodel (3.2.21)
activesupport (= 3.2.21)
activemodel (3.2.22)
activesupport (= 3.2.22)
builder (~> 3.0.0)
activesupport (3.2.21)
activesupport (3.2.22)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
builder (3.0.4)
@ -32,28 +32,28 @@ GEM
currencies (0.4.2)
erubis (2.7.0)
hike (1.2.3)
i18n (0.6.11)
i18n (0.7.0)
journey (1.0.4)
json (1.8.1)
json (1.8.3)
metaclass (0.0.4)
mocha (0.13.3)
metaclass (~> 0.0.1)
multi_json (1.10.1)
rack (1.4.5)
multi_json (1.11.1)
rack (1.4.7)
rack-cache (1.2)
rack (>= 0.4)
rack-ssl (1.3.4)
rack
rack-test (0.6.2)
rack-test (0.6.3)
rack (>= 1.0)
railties (3.2.21)
actionpack (= 3.2.21)
activesupport (= 3.2.21)
railties (3.2.22)
actionpack (= 3.2.22)
activesupport (= 3.2.22)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (>= 0.14.6, < 2.0)
rake (10.4.0)
rake (10.4.2)
rdoc (3.12.2)
json (~> 1.4)
sprockets (2.2.3)
@ -62,7 +62,7 @@ GEM
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thor (0.19.1)
thread_safe (0.3.4)
thread_safe (0.3.5)
tilt (1.4.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "2.1.2".freeze
VERSION = "2.1.3".freeze
end