From a8e9327f0b9107258ca6df16483b48c5b9680e41 Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Tue, 7 Aug 2012 09:32:38 -0400 Subject: [PATCH 1/3] Update HISTORY.md for v2.4.0 release --- History.md | 11 +++++++++++ liquid.gemspec | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index b8963bf..467bf68 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,16 @@ # Liquid Version History +## 2.4.0 / 2012-08-03 + +* Performance improvements +* Allow filters in `assign` +* Add `modulo` filter +* Ruby 1.8, 1.9, and Rubinius compatibility fixes +* Add support for `quoted['references']` in `tablerow` +* Add support for Enumerable to `tablerow` +* `strip\_html` filter removes html comments + + ## 2.3.0 / 2011-10-16 * Several speed/memory improvements diff --git a/liquid.gemspec b/liquid.gemspec index f96ca67..22e6940 100644 --- a/liquid.gemspec +++ b/liquid.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "liquid" - s.version = "2.3.0" + s.version = "2.4.0" s.platform = Gem::Platform::RUBY s.summary = "A secure, non-evaling end user template engine with aesthetic markup." s.authors = ["Tobias Luetke"] From 5c6de2d9196c05e0b688e0fcb40901d6d5d89978 Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Tue, 7 Aug 2012 09:37:19 -0400 Subject: [PATCH 2/3] Fix typo --- History.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/History.md b/History.md index 467bf68..e19fef9 100644 --- a/History.md +++ b/History.md @@ -8,7 +8,7 @@ * Ruby 1.8, 1.9, and Rubinius compatibility fixes * Add support for `quoted['references']` in `tablerow` * Add support for Enumerable to `tablerow` -* `strip\_html` filter removes html comments +* `strip_html` filter removes html comments ## 2.3.0 / 2011-10-16 From f8d46804fd32fe05468c8ca1546688acbe11553e Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Tue, 7 Aug 2012 09:49:22 -0400 Subject: [PATCH 3/3] Fix rake test for broken version of rake on travis --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 7c7c5bb..c6e1932 100755 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ task :default => 'test' Rake::TestTask.new(:test) do |t| t.libs << '.' << 'lib' << 'test' - t.pattern = 'test/liquid/**/*_test.rb' + t.test_files = FileList['test/liquid/**/*_test.rb'] t.verbose = false end