Skip to content

Commit

Permalink
Updated changelog and bump version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam091 committed Jun 4, 2023
1 parent 628a30f commit cb6b202
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ You can find recent releases with docs in GitHub:

https://github.com/shivam091/rails_bootstrap_form/releases

## [0.9.3](https://github.com/shivam091/rails_bootstrap_form/compare/v0.9.2...v0.9.3) - 2023-06-04

### What's changed

- Disabled floating labels for unsupported helpers

### What's fixed

- `id` of check box field when used in collection and don't has multiple select. (`collection_check_boxes` with `multiple: false`)

## [0.9.2](https://github.com/shivam091/rails_bootstrap_form/compare/v0.9.1...v0.9.2) - 2023-06-03

### What's new
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:
rails_bootstrap_form (0.9.2)
rails_bootstrap_form (0.9.3)
actionpack (~> 7.0)
activemodel (~> 7.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/rails_bootstrap_form/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# -*- warn_indent: true -*-

module RailsBootstrapForm
VERSION = "0.9.2".freeze
VERSION = "0.9.3".freeze
REQUIRED_RAILS_VERSION = "~> 7.0".freeze
end
2 changes: 1 addition & 1 deletion spec/rails_bootstrap_form_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

RSpec.describe RailsBootstrapForm do
it "has a valid version number" do
expect(RailsBootstrapForm::VERSION).to eq("0.9.2")
expect(RailsBootstrapForm::VERSION).to eq("0.9.3")
end

it "has a valid rails version number" do
Expand Down

0 comments on commit cb6b202

Please sign in to comment.