Skip to content

Commit

Permalink
Merge pull request #181 from emilioforrer/fix-rails-supported-version
Browse files Browse the repository at this point in the history
Fix rails supported version
  • Loading branch information
mathieujobin authored Apr 29, 2021
2 parents 267bf50 + 3932a07 commit 222f784
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions haml_coffee_assets.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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_rubygems_version = '>= 1.3.6'
s.required_ruby_version = '>= 2.5'
s.required_rubygems_version = '>= 2.5.2'

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'
Expand Down
2 changes: 1 addition & 1 deletion lib/haml_coffee_assets/version.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 222f784

Please sign in to comment.