Skip to content

Commit

Permalink
adds rails 8 support (#196)
Browse files Browse the repository at this point in the history
* adds rails 8 support

* exclude rubies <= 3.2 for rails 8

* correct PR number

---------

Co-authored-by: Aleksandr Balakirev <[email protected]>
Co-authored-by: Mathieu Jobin <[email protected]>
  • Loading branch information
3 people authored Nov 14, 2024
1 parent 2d5b078 commit f59fb17
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:
strategy:
fail-fast: false
matrix:
rails: [7.2.0, 7.1.1, 7.0.8, 6.1.7]
rails: [8.0.0, 7.2.0, 7.1.1, 7.0.8, 6.1.7]
ruby: [3.3, 3.2, 3.1, 3.0.6, jruby-9.4]
sprockets: [3, 4]
include:
- rails: 8.0.0
ruby: 3.3
sprockets: 4
- rails: 7.2.0
ruby: 3.3
sprockets: 4
Expand All @@ -44,6 +47,12 @@ jobs:
ruby: jruby-9.3
sprockets: 4
exclude:
- rails: 8.0.0
ruby: 3.1
- rails: 8.0.0
ruby: 3.0.6
- rails: 8.0.0
ruby: jruby-9.4
- rails: 7.2.0
ruby: 3.0.6

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Please have a look at the [Haml Coffee Changelog](https://github.com/netzpirat/h

## Master

## 1.27.0 - Nov 14th, 2024
- [#196][]: Add support for Rails 8.0.0

## 1.26.0 - Aug 19th, 2024
- [#193][]: Add support for Rails 7.2.0

Expand Down
2 changes: 1 addition & 1 deletion haml_coffee_assets.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.files = Dir.glob('{app,lib,vendor}/**/*') + %w[LICENSE README.md]

s.add_runtime_dependency 'coffee-script', '>= 2'
s.add_runtime_dependency 'railties', '>= 5.2', "< 7.3"
s.add_runtime_dependency 'railties', '>= 5.2', "< 8.1"
s.add_runtime_dependency 'sprockets', '>= 3.7'

s.add_development_dependency 'jasmine'
Expand Down
2 changes: 1 addition & 1 deletion lib/haml_coffee_assets/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding: UTF-8

module HamlCoffeeAssets
VERSION = '1.26.0' unless defined?(HamlCoffeeAssets::VERSION)
VERSION = '1.27.0' unless defined?(HamlCoffeeAssets::VERSION)
end

0 comments on commit f59fb17

Please sign in to comment.