From 5ff435b4ea3a8df29ba27b4955c86b76f4e7324b Mon Sep 17 00:00:00 2001 From: Blake Williams Date: Wed, 9 Sep 2020 09:40:45 -0400 Subject: [PATCH] Bump to v2.18.2 --- CHANGELOG.md | 2 ++ lib/view_component/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2251162a7..e82fd3a4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # master +# 2.18.2 + * Raise an error if controller or view context is accessed during initialize as they are only available in render. *Julian Nadeau* diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index b24b3b1c9..8d790559c 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 2 MINOR = 18 - PATCH = 1 + PATCH = 2 STRING = [MAJOR, MINOR, PATCH].join(".") end