Skip to content

Commit 803d1ce

Browse files
authored
Merge branch 'main' into dependabot/bundler/rails-8.1.0
2 parents 50d9b5e + e733e40 commit 803d1ce

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ruby ruby_version
1313
group :development, :test do
1414
gem "allocation_stats"
1515
gem "appraisal", "~> 2"
16-
gem "appraisal-run", "~> 1.0"
16+
gem "appraisal-run", "~> 1.1"
1717
gem "benchmark-ips", "~> 2"
1818
gem "better_html"
1919
gem "bundler", "~> 2"

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ GEM
9090
bundler
9191
rake
9292
thor (>= 0.14.0)
93-
appraisal-run (1.0.0)
93+
appraisal-run (1.1.0)
9494
ast (2.4.3)
9595
base64 (0.3.0)
9696
benchmark-ips (2.14.0)
@@ -408,7 +408,7 @@ PLATFORMS
408408
DEPENDENCIES
409409
allocation_stats
410410
appraisal (~> 2)
411-
appraisal-run (~> 1.0)
411+
appraisal-run (~> 1.1)
412412
benchmark-ips (~> 2)
413413
better_html
414414
bundler (~> 2)

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ nav_order: 6
1010

1111
## main
1212

13+
* Make `ViewComponent::VERSION` accessible to other gems by default.
14+
15+
*Hans Lemuet*
16+
1317
* Added Reinvented Hospitality to the list of companies using ViewComponent.
1418

1519
*Torgil Zechel*

gemfiles/rails_8.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.0.2)
4+
view_component (4.1.0)
55
activesupport (>= 7.1.0, < 8.2)
66
concurrent-ruby (~> 1)
77

gemfiles/rails_8.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.0.2)
4+
view_component (4.1.0)
55
activesupport (>= 7.1.0, < 8.2)
66
concurrent-ruby (~> 1)
77

lib/view_component.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
require "action_view"
44
require "active_support/dependencies/autoload"
5+
require "view_component/version"
56

67
module ViewComponent
78
extend ActiveSupport::Autoload

0 commit comments

Comments
 (0)