Skip to content

Commit 1959949

Browse files
authored
Merge pull request #132 from AndyObtiva/support-rails-7-2
Support Rails 7.1 & 7.2 in opal-rails v2.0.4
2 parents d66a14a + 5553bd0 commit 1959949

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ Gemfile.lock
2020
/test_app/log/*.log
2121
/test_app/tmp/
2222
/test_app/.sass-cache
23+
24+
.ruby-version
25+
.ruby-gemset

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Whitespace conventions:
1818
- 1 spaces before normal text
1919
-->
2020

21+
## [2.0.4](https://github.com/opal/opal-rails/compare/v2.0.3...v2.0.4) - 2024-12-06
22+
23+
### Added
24+
25+
- Add Rails 7.1 & 7.2 support
26+
2127
## [2.0.3](https://github.com/opal/opal-rails/compare/v2.0.2...v2.0.3) - 2021-12-29
2228

2329
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ bin/rails s # will start the sandbox app server
338338

339339
## License
340340

341-
© 2012-2022 Elia Schito
341+
© 2012-2024 Elia Schito
342342

343343
Permission is hereby granted, free of charge, to any person obtaining a copy
344344
of this software and associated documentation files (the "Software"), to deal

lib/opal/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Opal
22
module Rails
3-
VERSION = '2.0.3'
3+
VERSION = '2.0.4'
44
end
55
end

opal-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.executables = files.grep(%r{^exe/}) { |f| File.basename(f) }
3030
spec.require_paths = ["lib"]
3131

32-
spec.add_dependency 'rails', '>= 6.0', '< 7.1'
32+
spec.add_dependency 'rails', '>= 6.0', '< 7.3'
3333
spec.add_dependency 'sprockets-rails', '>= 3.0'
3434

3535
spec.add_dependency 'opal', '~> 1.0'

0 commit comments

Comments
 (0)