From 9dd0801f5c42b1457294023f1b52e76a8764120c Mon Sep 17 00:00:00 2001 From: Dylan Thacker-Smith Date: Fri, 2 Dec 2016 13:54:05 -0500 Subject: [PATCH 1/2] Drop support for ruby 2.0 It is no longer maintained upstream --- .travis.yml | 1 - History.md | 1 + liquid.gemspec | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 31cec87..70f6334 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: ruby rvm: - - 2.0 - 2.1 - 2.2 - ruby-head diff --git a/History.md b/History.md index 68db096..0cbc692 100644 --- a/History.md +++ b/History.md @@ -3,6 +3,7 @@ ## 4.0.0 / not yet released / branch "master" ### Changed +* Ruby 2.0 support dropped (#832) [Dylan Thacker-Smith] * Add to_number Drop method to allow custom drops to work with number filters (#731) * Add strict_variables and strict_filters options to detect undefined references (#691) * Improve loop performance (#681) [Florian Weingarten] diff --git a/liquid.gemspec b/liquid.gemspec index 5b00a0d..27b2586 100644 --- a/liquid.gemspec +++ b/liquid.gemspec @@ -15,6 +15,7 @@ Gem::Specification.new do |s| s.license = "MIT" # s.description = "A secure, non-evaling end user template engine with aesthetic markup." + s.required_ruby_version = ">= 2.1.0" s.required_rubygems_version = ">= 1.3.7" s.test_files = Dir.glob("{test}/**/*") From 812e3c51b92ab93c0ab7738c0dcf17554d680d09 Mon Sep 17 00:00:00 2001 From: Dylan Thacker-Smith Date: Fri, 2 Dec 2016 14:03:25 -0500 Subject: [PATCH 2/2] test: Add ruby 2.3.3 to CI Travis doesn't have a ruby 2.3 alias, so the latest 2.3.x version is specified instead. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 70f6334..60f57d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: ruby rvm: - 2.1 - 2.2 + - 2.3.3 - ruby-head - jruby-head # - rbx-2