diff --git a/CHANGELOG.md b/CHANGELOG.md index a8a32b84e..6f268f4f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# v1.6.1 + +* Allow Previews to have no layout. + + *Jon Palmer* + +* Bump rack from 2.0.7 to 2.0.8. + + *Dependabot* + +* Compile components on application boot when eager loading is enabled. + + *Joel Hawksley* + +* Previews support content blocks. + + *Cesario Uy* + +* Follow Rails conventions. (refactor) + + *Rainer Borene* + +* Fix edge case issue with extracting variants from less conventional source_locations. + + *Ryan Workman* + # v1.6.0 * Avoid dropping elements in the render_inline test helper. diff --git a/Gemfile.lock b/Gemfile.lock index e83882015..fecfb8494 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.6.0) + actionview-component (1.6.1) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index 9b6f146ad..66ad986d1 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 = 6 - PATCH = 0 + PATCH = 1 STRING = [MAJOR, MINOR, PATCH].join(".") end