diff --git a/CHANGELOG.md b/CHANGELOG.md index 74c290569..0685b30be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# v1.5.0 + +Note: `actionview-component` is now loaded by requiring `actionview/component`, not `actionview/component/base`. + +* Fix issue with generating component method signatures. + + *Ryan Workman, Dylan Clark* + +* Create component generator. + + *Vinicius Stock* + +* Add helpers proxy. + + *Kasper Meyer* + +* Introduce ActionView::Component::Previews. + + *Juan Manuel Ramallo* + # v1.4.0 * Fix bug where components broke in application paths with periods. diff --git a/Gemfile.lock b/Gemfile.lock index e7269065e..65c44c902 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.4.0) + actionview-component (1.5.0) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index c8f232303..d2a7bd4ae 100644 --- a/lib/action_view/component/version.rb +++ b/lib/action_view/component/version.rb @@ -4,7 +4,7 @@ module ActionView module Component module VERSION MAJOR = 1 - MINOR = 4 + MINOR = 5 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")