diff --git a/CHANGELOG.md b/CHANGELOG.md index 0685b30be..d23d6e71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.5.1 + +* Update railties class to work with Rails 6. + + *Juan Manuel Ramallo* + # v1.5.0 Note: `actionview-component` is now loaded by requiring `actionview/component`, not `actionview/component/base`. diff --git a/Gemfile.lock b/Gemfile.lock index 65c44c902..ac3d85d9c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.5.0) + actionview-component (1.5.1) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index d2a7bd4ae..0ecc5b7ad 100644 --- a/lib/action_view/component/version.rb +++ b/lib/action_view/component/version.rb @@ -5,7 +5,7 @@ module Component module VERSION MAJOR = 1 MINOR = 5 - PATCH = 0 + PATCH = 1 STRING = [MAJOR, MINOR, PATCH].join(".") end