From d56a75b08ded866704e4485fa856b8a8550ee8ae Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Mon, 21 Oct 2019 14:53:30 -0600 Subject: [PATCH] release v1.3.6 --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- lib/action_view/component/version.rb | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d5aa7ff..707d964d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# v1.3.6 + +* Allow template file names without format. + + *Joel Hawksley* + +* Add support for translations. + + *Juan Manuel Ramallo* + # v1.3.5 * Re-expose `controller` method. diff --git a/Gemfile.lock b/Gemfile.lock index 60e809a43..016f8496b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.3.5) + actionview-component (1.3.6) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index ce4e10b83..677eb06bf 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 = 3 - PATCH = 5 + PATCH = 6 STRING = [MAJOR, MINOR, PATCH].join(".") end