From b644b41bbce77de53ec036cee7c33b6b4a44e405 Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Mon, 6 Jan 2020 11:09:22 -0700 Subject: [PATCH] release v1.6.2 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- lib/action_view/component/version.rb | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f268f4f1..57b50c587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v1.6.2 + +* Fix Uninitialized Constant error. + + *Jon Palmer* + +* Add basic github issue and PR templates. + + *Dylan Clark* + +* Update readme phrasing around previews. + + *Justin Coyne* + # v1.6.1 * Allow Previews to have no layout. diff --git a/Gemfile.lock b/Gemfile.lock index fecfb8494..130912e64 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.6.1) + actionview-component (1.6.2) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index 66ad986d1..0fa778269 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 = 1 + PATCH = 2 STRING = [MAJOR, MINOR, PATCH].join(".") end