From 026157e12873786fa5487de931e7f72ba255635f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Wed, 24 Mar 2021 15:36:07 -0400 Subject: [PATCH 1/3] Bump to 5.0.1 and add changelog for release --- History.md | 13 +++++++++++++ lib/liquid/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 4280a72..ae57688 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,18 @@ # Liquid Change Log +## 5.0.1 / 2021-03-24 + +### Fixes +* Add ParseTreeVisitor to Echo tag (#1414) [CP Clermont] +* Fix Rubocop (#1402) [Dylan Thacker-Smith] +* Add a hint to sign CLA only if it's the first time (#1406, #1405) [ADTC] +* Test with ruby 3.0 as the latest ruby version (#1398) [Dylan Thacker-Smith] +* Handle carriage return in newlines_to_br (#1391) [Unending] +* Build the tokenizer through the parse context for liquid-c (#1386) [Dylan Thacker-Smith] + +### Performance Improvements +* Use split limit in truncatewords (#1361) [Dylan Thacker-Smith] + ## 5.0.0 / 2021-01-06 ### Features diff --git a/lib/liquid/version.rb b/lib/liquid/version.rb index 5145a9f..47e3af7 100644 --- a/lib/liquid/version.rb +++ b/lib/liquid/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module Liquid - VERSION = "5.0.0" + VERSION = "5.0.1" end From ff70161512f38cc942e2b2105015f587b08b0b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Wed, 24 Mar 2021 16:52:57 -0400 Subject: [PATCH 2/3] Remove internal fixes from History.md Co-authored-by: Dylan Thacker-Smith --- History.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/History.md b/History.md index ae57688..734e8bc 100644 --- a/History.md +++ b/History.md @@ -4,8 +4,6 @@ ### Fixes * Add ParseTreeVisitor to Echo tag (#1414) [CP Clermont] -* Fix Rubocop (#1402) [Dylan Thacker-Smith] -* Add a hint to sign CLA only if it's the first time (#1406, #1405) [ADTC] * Test with ruby 3.0 as the latest ruby version (#1398) [Dylan Thacker-Smith] * Handle carriage return in newlines_to_br (#1391) [Unending] * Build the tokenizer through the parse context for liquid-c (#1386) [Dylan Thacker-Smith] From 6ac2499f7f78deb69ddf50d1987e9c0c529e8c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Wed, 24 Mar 2021 16:53:45 -0400 Subject: [PATCH 3/3] Remove internal tokenizer fix from History.md Co-authored-by: Dylan Thacker-Smith --- History.md | 1 - 1 file changed, 1 deletion(-) diff --git a/History.md b/History.md index 734e8bc..c30ecc3 100644 --- a/History.md +++ b/History.md @@ -6,7 +6,6 @@ * Add ParseTreeVisitor to Echo tag (#1414) [CP Clermont] * Test with ruby 3.0 as the latest ruby version (#1398) [Dylan Thacker-Smith] * Handle carriage return in newlines_to_br (#1391) [Unending] -* Build the tokenizer through the parse context for liquid-c (#1386) [Dylan Thacker-Smith] ### Performance Improvements * Use split limit in truncatewords (#1361) [Dylan Thacker-Smith]