Skip to content

Commit 222f784

Browse files
authored
Merge pull request #181 from emilioforrer/fix-rails-supported-version
Fix rails supported version
2 parents 267bf50 + 3932a07 commit 222f784

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

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

55
## Master
66

7-
## 1.19.0
7+
## 1.20.0 - Apr 29th, 2021
8+
- [#181][]: Fix supported version to Rails >= 4.2 && < 6.2, Ruby >= 2.5,
9+
- [#179][]: Run test on Github Actions
10+
- [#180][]: Add support for Rails 6.0 and 6.1 and Sprockets 4
11+
- [#172][]: Fix tests with Rails 5.2 and latest rubies
12+
13+
## 1.19.0 - Feb 23rd, 2021
814
- [#169][]: Fix transformation for JST templates
915

10-
## 1.18.0
16+
## 1.18.0 - June 23rd, 2017
1117
- [#164][]: Fix interop error with Rails 5.1 Template Errors
1218

1319
## 1.17.0 - October 26, 2016

haml_coffee_assets.gemspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ Gem::Specification.new do |s|
1111
s.description = 'Compile Haml CoffeeScript templates in the Rails asset pipeline.'
1212
s.license = 'MIT'
1313

14-
s.required_ruby_version = '>= 2.2.4'
15-
s.required_rubygems_version = '>= 1.3.6'
14+
s.required_ruby_version = '>= 2.5'
15+
s.required_rubygems_version = '>= 2.5.2'
1616

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', '>= 4.2', "< 6.2"
2021
s.add_runtime_dependency 'sprockets', '>= 3.7'
2122

2223
s.add_development_dependency 'bundler'

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.19.0' unless defined?(HamlCoffeeAssets::VERSION)
4+
VERSION = '1.20.0' unless defined?(HamlCoffeeAssets::VERSION)
55
end

0 commit comments

Comments
 (0)