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(".")