Skip to content

Commit

Permalink
Bump version to 0.2.1 and updated gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam091 committed May 15, 2023
1 parent c3c3f60 commit 3b2c63e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ demo/db/*.sqlite3
demo/log/**
demo/tmp/**/*
demo/*.byebug_history
demo/public/assets
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.2.0)
rails_bootstrap_form (0.2.1)

GEM
remote: http://rubygems.org/
Expand Down
1 change: 0 additions & 1 deletion lib/rails_bootstrap_form.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class << self
def eager_load!
super
RailsBootstrapForm::Components.eager_load!
RailsBootstrapForm::Inputs.eager_load!
end

def config
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.2.0".freeze
VERSION = "0.2.1".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.2.0")
expect(RailsBootstrapForm::VERSION).to eq("0.2.1")
end

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

0 comments on commit 3b2c63e

Please sign in to comment.