Skip to content

Commit f59fb17

Browse files
balakirevsAleksandr Balakirevmathieujobin
authored
adds rails 8 support (#196)
* adds rails 8 support * exclude rubies <= 3.2 for rails 8 * correct PR number --------- Co-authored-by: Aleksandr Balakirev <oleksandr.balakiriev@salt.ch> Co-authored-by: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com>
1 parent 2d5b078 commit f59fb17

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
rails: [7.2.0, 7.1.1, 7.0.8, 6.1.7]
18+
rails: [8.0.0, 7.2.0, 7.1.1, 7.0.8, 6.1.7]
1919
ruby: [3.3, 3.2, 3.1, 3.0.6, jruby-9.4]
2020
sprockets: [3, 4]
2121
include:
22+
- rails: 8.0.0
23+
ruby: 3.3
24+
sprockets: 4
2225
- rails: 7.2.0
2326
ruby: 3.3
2427
sprockets: 4
@@ -44,6 +47,12 @@ jobs:
4447
ruby: jruby-9.3
4548
sprockets: 4
4649
exclude:
50+
- rails: 8.0.0
51+
ruby: 3.1
52+
- rails: 8.0.0
53+
ruby: 3.0.6
54+
- rails: 8.0.0
55+
ruby: jruby-9.4
4756
- rails: 7.2.0
4857
ruby: 3.0.6
4958

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Please have a look at the [Haml Coffee Changelog](https://github.com/netzpirat/h
44

55
## Master
66

7+
## 1.27.0 - Nov 14th, 2024
8+
- [#196][]: Add support for Rails 8.0.0
9+
710
## 1.26.0 - Aug 19th, 2024
811
- [#193][]: Add support for Rails 7.2.0
912

haml_coffee_assets.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.files = Dir.glob('{app,lib,vendor}/**/*') + %w[LICENSE README.md]
1818

1919
s.add_runtime_dependency 'coffee-script', '>= 2'
20-
s.add_runtime_dependency 'railties', '>= 5.2', "< 7.3"
20+
s.add_runtime_dependency 'railties', '>= 5.2', "< 8.1"
2121
s.add_runtime_dependency 'sprockets', '>= 3.7'
2222

2323
s.add_development_dependency 'jasmine'

lib/haml_coffee_assets/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding: UTF-8
22

33
module HamlCoffeeAssets
4-
VERSION = '1.26.0' unless defined?(HamlCoffeeAssets::VERSION)
4+
VERSION = '1.27.0' unless defined?(HamlCoffeeAssets::VERSION)
55
end

0 commit comments

Comments
 (0)