File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,16 @@ Please have a look at the [Haml Coffee Changelog](https://github.com/netzpirat/h
4
4
5
5
## Master
6
6
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
8
14
- [ #169 ] [ ] : Fix transformation for JST templates
9
15
10
- ## 1.18.0
16
+ ## 1.18.0 - June 23rd, 2017
11
17
- [ #164 ] [ ] : Fix interop error with Rails 5.1 Template Errors
12
18
13
19
## 1.17.0 - October 26, 2016
Original file line number Diff line number Diff line change @@ -11,12 +11,13 @@ Gem::Specification.new do |s|
11
11
s . description = 'Compile Haml CoffeeScript templates in the Rails asset pipeline.'
12
12
s . license = 'MIT'
13
13
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 '
16
16
17
17
s . files = Dir . glob ( '{app,lib,vendor}/**/*' ) + %w[ LICENSE README.md ]
18
18
19
19
s . add_runtime_dependency 'coffee-script' , '>= 2'
20
+ s . add_runtime_dependency 'railties' , '>= 4.2' , "< 6.2"
20
21
s . add_runtime_dependency 'sprockets' , '>= 3.7'
21
22
22
23
s . add_development_dependency 'bundler'
Original file line number Diff line number Diff line change 1
1
# coding: UTF-8
2
2
3
3
module HamlCoffeeAssets
4
- VERSION = '1.19 .0' unless defined? ( HamlCoffeeAssets ::VERSION )
4
+ VERSION = '1.20 .0' unless defined? ( HamlCoffeeAssets ::VERSION )
5
5
end
You can’t perform that action at this time.
0 commit comments