From f287b381ef9705a50f66c508ebd36d0d16e7022f Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Thu, 29 Apr 2021 10:54:30 +0900 Subject: [PATCH 1/4] Fix Ruby && Rails supported version --- haml_coffee_assets.gemspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haml_coffee_assets.gemspec b/haml_coffee_assets.gemspec index 3d72361..25f3b22 100644 --- a/haml_coffee_assets.gemspec +++ b/haml_coffee_assets.gemspec @@ -11,12 +11,13 @@ Gem::Specification.new do |s| s.description = 'Compile Haml CoffeeScript templates in the Rails asset pipeline.' s.license = 'MIT' - s.required_ruby_version = '>= 2.2.4' + s.required_ruby_version = '>= 2.5.3' s.required_rubygems_version = '>= 1.3.6' s.files = Dir.glob('{app,lib,vendor}/**/*') + %w[LICENSE README.md] s.add_runtime_dependency 'coffee-script', '>= 2' + s.add_runtime_dependency 'railties', '>= 4.2', "< 6.2" s.add_runtime_dependency 'sprockets', '>= 3.7' s.add_development_dependency 'bundler' From 83e7bf5d6d5d941eefe6b1aaf94b0aaa4be30f5c Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Thu, 29 Apr 2021 10:54:40 +0900 Subject: [PATCH 2/4] Bump version --- lib/haml_coffee_assets/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/haml_coffee_assets/version.rb b/lib/haml_coffee_assets/version.rb index 7664780..eb8a7fb 100644 --- a/lib/haml_coffee_assets/version.rb +++ b/lib/haml_coffee_assets/version.rb @@ -1,5 +1,5 @@ # coding: UTF-8 module HamlCoffeeAssets - VERSION = '1.19.0' unless defined?(HamlCoffeeAssets::VERSION) + VERSION = '1.20.0' unless defined?(HamlCoffeeAssets::VERSION) end From 2f25347904161b7a46ffd7d5ec655c9108075321 Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Thu, 29 Apr 2021 11:04:39 +0900 Subject: [PATCH 3/4] bump minimum rubygems version (1.3.6 is from 2010, 2.5.2 is 2016) --- haml_coffee_assets.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haml_coffee_assets.gemspec b/haml_coffee_assets.gemspec index 25f3b22..1a16ef3 100644 --- a/haml_coffee_assets.gemspec +++ b/haml_coffee_assets.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.license = 'MIT' s.required_ruby_version = '>= 2.5.3' - s.required_rubygems_version = '>= 1.3.6' + s.required_rubygems_version = '>= 2.5.2' s.files = Dir.glob('{app,lib,vendor}/**/*') + %w[LICENSE README.md] From 3932a071fec667a846685ba86f8b7592007fa61b Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Thu, 29 Apr 2021 11:34:21 +0900 Subject: [PATCH 4/4] update CHANGELOG --- CHANGELOG.md | 10 ++++++++-- haml_coffee_assets.gemspec | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31008a9..6a86cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,16 @@ Please have a look at the [Haml Coffee Changelog](https://github.com/netzpirat/h ## Master -## 1.19.0 +## 1.20.0 - Apr 29th, 2021 +- [#181][]: Fix supported version to Rails >= 4.2 && < 6.2, Ruby >= 2.5, +- [#179][]: Run test on Github Actions +- [#180][]: Add support for Rails 6.0 and 6.1 and Sprockets 4 +- [#172][]: Fix tests with Rails 5.2 and latest rubies + +## 1.19.0 - Feb 23rd, 2021 - [#169][]: Fix transformation for JST templates -## 1.18.0 +## 1.18.0 - June 23rd, 2017 - [#164][]: Fix interop error with Rails 5.1 Template Errors ## 1.17.0 - October 26, 2016 diff --git a/haml_coffee_assets.gemspec b/haml_coffee_assets.gemspec index 1a16ef3..d033f03 100644 --- a/haml_coffee_assets.gemspec +++ b/haml_coffee_assets.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |s| s.description = 'Compile Haml CoffeeScript templates in the Rails asset pipeline.' s.license = 'MIT' - s.required_ruby_version = '>= 2.5.3' + s.required_ruby_version = '>= 2.5' s.required_rubygems_version = '>= 2.5.2' s.files = Dir.glob('{app,lib,vendor}/**/*') + %w[LICENSE README.md]