From ffb0d6e8b754aa77cd96f98bdfeaf3d4d8d6eb32 Mon Sep 17 00:00:00 2001 From: Manuel Puyol Date: Mon, 26 Apr 2021 12:55:07 -0500 Subject: [PATCH] release 2.31.0 --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/view_component/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50e9175f2..a0be41f04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## main +## 2.31.0 + * Add `#with_content` to allow setting content without a block. *Jordan Raine, Manuel Puyol* diff --git a/Gemfile.lock b/Gemfile.lock index bc8803ea4..4af0b779f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,7 +87,7 @@ GIT PATH remote: . specs: - view_component (2.30.0) + view_component (2.31.0) activesupport (>= 5.0.0, < 7.0) GEM diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 0643041c5..7dcfcd7f1 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,7 +3,7 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 30 + MINOR = 31 PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".")