Bump version for upcoming release.

This commit is contained in:
José Valim 2010-07-06 11:39:23 +02:00
parent a16789d3d7
commit e31af6b8cf
3 changed files with 10 additions and 5 deletions

View File

@ -1,4 +1,7 @@
* enhancements
* Added required by default as configuration option
* Added label_input as component, allowing boolean to change its order (input appearing first than label)
* Added error_method to tidy up how errors are exhibited
* Added error class on wrappers (by github.com/jduff)
* Changed numeric types to have type=number for HTML5

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "1.2.0".freeze
VERSION = "1.2.1".freeze
end

View File

@ -5,11 +5,11 @@
Gem::Specification.new do |s|
s.name = %q{simple_form}
s.version = "1.2.0"
s.version = "1.2.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
s.date = %q{2010-06-07}
s.date = %q{2010-07-06}
s.description = %q{Forms made easy!}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [
@ -28,6 +28,7 @@ Gem::Specification.new do |s|
"lib/simple_form/components.rb",
"lib/simple_form/components/errors.rb",
"lib/simple_form/components/hints.rb",
"lib/simple_form/components/label_input.rb",
"lib/simple_form/components/labels.rb",
"lib/simple_form/components/wrapper.rb",
"lib/simple_form/form_builder.rb",
@ -35,6 +36,7 @@ Gem::Specification.new do |s|
"lib/simple_form/inputs.rb",
"lib/simple_form/inputs/base.rb",
"lib/simple_form/inputs/block_input.rb",
"lib/simple_form/inputs/boolean_input.rb",
"lib/simple_form/inputs/collection_input.rb",
"lib/simple_form/inputs/date_time_input.rb",
"lib/simple_form/inputs/hidden_input.rb",
@ -48,7 +50,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/plataformatec/simple_form}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Forms made easy!}
s.test_files = [
"test/action_view_extensions/builder_test.rb",
@ -71,7 +73,7 @@ Gem::Specification.new do |s|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else