From 5553bd0c9d21fc4081a596fd7d6e32715e86226e Mon Sep 17 00:00:00 2001 From: Andy Maleh Date: Fri, 6 Dec 2024 17:38:25 -0500 Subject: [PATCH] Support Rails 7.1 & 7.2 in opal-rails v2.0.4 --- .gitignore | 3 +++ CHANGELOG.md | 6 ++++++ README.md | 2 +- lib/opal/rails/version.rb | 2 +- opal-rails.gemspec | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2dc0e18..d6641bb 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,6 @@ Gemfile.lock /test_app/log/*.log /test_app/tmp/ /test_app/.sass-cache + +.ruby-version +.ruby-gemset diff --git a/CHANGELOG.md b/CHANGELOG.md index 787dd76..f5bc291 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ Whitespace conventions: - 1 spaces before normal text --> +## [2.0.4](https://github.com/opal/opal-rails/compare/v2.0.3...v2.0.4) - 2024-12-06 + +### Added + +- Add Rails 7.1 & 7.2 support + ## [2.0.3](https://github.com/opal/opal-rails/compare/v2.0.2...v2.0.3) - 2021-12-29 ### Added diff --git a/README.md b/README.md index 47fefe4..1b4f0c8 100644 --- a/README.md +++ b/README.md @@ -338,7 +338,7 @@ bin/rails s # will start the sandbox app server ## License -© 2012-2022 Elia Schito +© 2012-2024 Elia Schito Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/opal/rails/version.rb b/lib/opal/rails/version.rb index 36f0254..d79bd33 100644 --- a/lib/opal/rails/version.rb +++ b/lib/opal/rails/version.rb @@ -1,5 +1,5 @@ module Opal module Rails - VERSION = '2.0.3' + VERSION = '2.0.4' end end diff --git a/opal-rails.gemspec b/opal-rails.gemspec index 8cf9ddb..fa11012 100644 --- a/opal-rails.gemspec +++ b/opal-rails.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| spec.executables = files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_dependency 'rails', '>= 6.0', '< 7.1' + spec.add_dependency 'rails', '>= 6.0', '< 7.3' spec.add_dependency 'sprockets-rails', '>= 3.0' spec.add_dependency 'opal', '~> 1.0'