Skip to content

Commit 2d5b078

Browse files
authored
Support for Rails 7.2 (#194)
* Support for Rails 7.2 * Exclude rails 7.2.0 and ruby 3.0.6 combination * Update changelog and bump version
1 parent 1a25a57 commit 2d5b078

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 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.1.1, 7.0.8, 6.1.7]
18+
rails: [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: 7.2.0
23+
ruby: 3.3
24+
sprockets: 4
2225
- rails: 7.1.1
2326
ruby: 3.2
2427
sprockets: 4
@@ -40,6 +43,9 @@ jobs:
4043
- rails: 6.1.4
4144
ruby: jruby-9.3
4245
sprockets: 4
46+
exclude:
47+
- rails: 7.2.0
48+
ruby: 3.0.6
4349

4450
env:
4551
RAILS_VER: ${{ matrix.rails }}

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.26.0 - Aug 19th, 2024
8+
- [#193][]: Add support for Rails 7.2.0
9+
710
## 1.25.1 - Jul 22th, 2024
811
- [#192][]: Fix .hamlc is processed by jst unexpectedly (#189)
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.2"
20+
s.add_runtime_dependency 'railties', '>= 5.2', "< 7.3"
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.25.1' unless defined?(HamlCoffeeAssets::VERSION)
4+
VERSION = '1.26.0' unless defined?(HamlCoffeeAssets::VERSION)
55
end

0 commit comments

Comments
 (0)