Skip to content

Commit

Permalink
new release: v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
potenza committed Feb 18, 2015
1 parent 9c0eb5b commit f45d8e5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
## Pending Release (master-branch only)
## 2.3.0 (2015-02-17)

Bugfixes:

- Use #underscore, not #downcase for help text scope (#140, @atipugin)
- Radio button and checkbox labels will now include the disabled class as needed. (#156, @ScottSwezey)
- Fixed issue with setting offset in form_group without label in horizontal layout
- Fixed issue with setting offset in form_group without label in horizontal layout
when form uses non-default label_col
- Fixed wrapper options (#153, @veilleperso)
- Fix errors on non-ActiveRecord setups (#200, @sgnn7)

Features:

Expand All @@ -14,6 +16,7 @@ Features:
- Allow to skip label rendering (#145, @atipugin)
- Added a `required` CSS class for labels with required attributes (#150, @krsyoung)
- Added option to customize labels' class.
- Allow callable value_method and text_method for collection_check_boxes and collection_radio_buttons (#199, @shadwell)

## 2.2.0 (2014-09-16)

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
bootstrap_form (2.2.0)
bootstrap_form (2.3.0)

GEM
remote: http://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ buttons.
```

You can also use the `primary` helper, which adds `btn btn-primary` to your
submit button **(master branch only)**:
submit button:

```erb
<%= f.primary "Optional Label" %>
Expand Down Expand Up @@ -463,7 +463,7 @@ You can turn off inline errors for the entire form like this:
<% end %>
```

### Label Errors (Master-branch only)
### Label Errors

You can also display validation errors in the field's label; just turn
on the `:label_errors` option. Here's an example:
Expand Down
2 changes: 1 addition & 1 deletion lib/bootstrap_form/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BootstrapForm
VERSION = "2.2.0"
VERSION = "2.3.0"
end

0 comments on commit f45d8e5

Please sign in to comment.