diff --git a/History.md b/History.md index b8963bf..e19fef9 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/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