From 10592d36bf985d8072f0fb6d7347e3ede8cb93d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 2 Mar 2012 12:11:06 -0300 Subject: [PATCH] Fix CHANGELOG --- CHANGELOG.md | 8 ++++---- Gemfile.lock | 4 ++-- lib/simple_form/version.rb | 2 +- test/inputs/boolean_input_test.rb | 2 -- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d0fae922..f5ed6726e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -## master +## 2.0.2 (Not released yet) + +### enhancements + * Add `:inline_label` configuration to nested booleans to display text inline with checkbox. ([@ehoch](https://github.com/ehoch)) ### bug fix * Fix `min_max` component to not output maximum value. ([@julian7](https://github.com/julian7)). @@ -6,9 +9,6 @@ ## 2.0.1 -### enhancements - * Add `:inline_label` configuration to nested booleans to display text inline with checkbox. ([@ehoch](https://github.com/ehoch)) - ### bug fix * Sanitaze html attributes to `label` method. ([@nashby](https://github.com/nashby)). Closes [#472](https://github.com/plataformatec/simple_form/issues/472) diff --git a/Gemfile.lock b/Gemfile.lock index 547495b54..2d22245ee 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simple_form (2.0.1) + simple_form (2.0.2.dev) actionpack (~> 3.0) activemodel (~> 3.0) @@ -72,4 +72,4 @@ DEPENDENCIES rake rdoc simple_form! - tzinfo \ No newline at end of file + tzinfo diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index 0cc22ff0a..01fe92df3 100644 --- a/lib/simple_form/version.rb +++ b/lib/simple_form/version.rb @@ -1,3 +1,3 @@ module SimpleForm - VERSION = "2.0.1".freeze + VERSION = "2.0.2.dev".freeze end diff --git a/test/inputs/boolean_input_test.rb b/test/inputs/boolean_input_test.rb index 560852616..8cd498178 100644 --- a/test/inputs/boolean_input_test.rb +++ b/test/inputs/boolean_input_test.rb @@ -105,6 +105,4 @@ class BooleanInputTest < ActionView::TestCase end end end - - end