diff --git a/Gemfile.lock b/Gemfile.lock index 46798a62d..a63de0cec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 38c662010..fff5ba0af 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ nav_order: 6 ## main +## 4.1.1 + * Add Consultport to list of companies using ViewComponent. *Sebastian Nepote* diff --git a/docs/_data/library.yml b/docs/_data/library.yml index d06002d95..ace041e8d 100644 --- a/docs/_data/library.yml +++ b/docs/_data/library.yml @@ -1 +1 @@ -version: 4.1.0 +version: 4.1.1 diff --git a/gemfiles/rails_7.1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock index 2b4b5762a..4a86df570 100644 --- a/gemfiles/rails_7.1.gemfile.lock +++ b/gemfiles/rails_7.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/gemfiles/rails_7.2.gemfile.lock b/gemfiles/rails_7.2.gemfile.lock index a21c39901..8d7617041 100644 --- a/gemfiles/rails_7.2.gemfile.lock +++ b/gemfiles/rails_7.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/gemfiles/rails_8.0.gemfile.lock b/gemfiles/rails_8.0.gemfile.lock index 03d65eece..a533207d8 100644 --- a/gemfiles/rails_8.0.gemfile.lock +++ b/gemfiles/rails_8.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/gemfiles/rails_8.1.gemfile.lock b/gemfiles/rails_8.1.gemfile.lock index 2de01169b..665d76b05 100644 --- a/gemfiles/rails_8.1.gemfile.lock +++ b/gemfiles/rails_8.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/gemfiles/rails_main.gemfile.lock b/gemfiles/rails_main.gemfile.lock index cf88b1240..58bfe335f 100644 --- a/gemfiles/rails_main.gemfile.lock +++ b/gemfiles/rails_main.gemfile.lock @@ -109,7 +109,7 @@ GIT PATH remote: .. specs: - view_component (4.1.0) + view_component (4.1.1) actionview (>= 7.1.0, < 8.2) activesupport (>= 7.1.0, < 8.2) concurrent-ruby (~> 1) diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index 68bb3fa57..f4bdd54c0 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -4,7 +4,7 @@ module ViewComponent module VERSION MAJOR = 4 MINOR = 1 - PATCH = 0 + PATCH = 1 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")