Release 2.1.2

This commit is contained in:
Rafael Mendonça França 2014-11-25 19:21:20 -02:00
parent ce27a82d6f
commit 95a8d8731a
5 changed files with 33 additions and 26 deletions

View File

@ -1,3 +1,8 @@
## 2.1.2
### bug fix
* Fix XSS vulnerability on error components.
## 2.1.1
### bug fix

View File

@ -1,16 +1,16 @@
PATH
remote: .
specs:
simple_form (2.1.1)
simple_form (2.1.2)
actionpack (~> 3.0)
activemodel (~> 3.0)
GEM
remote: http://rubygems.org/
specs:
actionpack (3.2.12)
activemodel (= 3.2.12)
activesupport (= 3.2.12)
actionpack (3.2.21)
activemodel (= 3.2.21)
activesupport (= 3.2.21)
builder (~> 3.0.0)
erubis (~> 2.7.0)
journey (~> 1.0.4)
@ -18,48 +18,50 @@ GEM
rack-cache (~> 1.2)
rack-test (~> 0.6.1)
sprockets (~> 2.2.1)
activemodel (3.2.12)
activesupport (= 3.2.12)
activemodel (3.2.21)
activesupport (= 3.2.21)
builder (~> 3.0.0)
activesupport (3.2.12)
i18n (~> 0.6)
activesupport (3.2.21)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
builder (3.0.4)
country_select (1.1.3)
erubis (2.7.0)
hike (1.2.1)
i18n (0.6.2)
hike (1.2.3)
i18n (0.6.11)
journey (1.0.4)
json (1.7.7)
metaclass (0.0.1)
mocha (0.13.2)
json (1.8.1)
metaclass (0.0.4)
mocha (0.13.3)
metaclass (~> 0.0.1)
multi_json (1.6.1)
multi_json (1.10.1)
rack (1.4.5)
rack-cache (1.2)
rack (>= 0.4)
rack-ssl (1.3.3)
rack-ssl (1.3.4)
rack
rack-test (0.6.2)
rack (>= 1.0)
railties (3.2.12)
actionpack (= 3.2.12)
activesupport (= 3.2.12)
railties (3.2.21)
actionpack (= 3.2.21)
activesupport (= 3.2.21)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (>= 0.14.6, < 2.0)
rake (10.0.3)
rake (10.4.0)
rdoc (3.12.2)
json (~> 1.4)
sprockets (2.2.2)
sprockets (2.2.3)
hike (~> 1.2)
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thor (0.17.0)
tilt (1.3.3)
tzinfo (0.3.35)
thor (0.19.1)
thread_safe (0.3.4)
tilt (1.4.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)
PLATFORMS
ruby

View File

@ -2,7 +2,7 @@ source :rubygems
gem 'simple_form', :path => '..'
gem 'country_select'
gem 'country_select', '~> 1.1'
gem 'railties', '~> 3.0.0'
gem 'activemodel', '~> 3.0.0'
gem 'actionpack', '~> 3.0.0'

View File

@ -2,7 +2,7 @@ source :rubygems
gem 'simple_form', :path => '..'
gem 'country_select'
gem 'country_select', '~> 1.1'
gem 'railties', '~> 3.1.0'
gem 'activemodel', '~> 3.1.0'
gem 'actionpack', '~> 3.1.0'

View File

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