From ec6fb4d5fa37bccc7b2c57bd7a01203ff7846324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Thu, 17 Mar 2022 15:39:04 -0400 Subject: [PATCH 1/2] Update changelog & bump version for 5.3.0 release --- History.md | 4 +++- lib/liquid/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index cca6692f..04b36df0 100644 --- a/History.md +++ b/History.md @@ -1,9 +1,11 @@ # Liquid Change Log -## 5.3.0 (unreleased) +## 5.3.0 2022-03-18 ### Fixes * StandardFilter: Fix missing @context on iterations (#1525) [Thierry Joyal] +* Test under Ruby 3.1 (#1533) [petergoldstein] +* Fix warning about block and default value in `static_registers.rb` (#1531) [Peter Zhu] ### Deprecation * Condition#evaluate to require mandatory context argument in Liquid 6.0.0 (#1527) [Thierry Joyal] diff --git a/lib/liquid/version.rb b/lib/liquid/version.rb index b164ba96..3fc87a5a 100644 --- a/lib/liquid/version.rb +++ b/lib/liquid/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module Liquid - VERSION = "5.3.0.alpha" + VERSION = "5.3.0" end From 11625b1bc9e0ab5512e31320b58e3315b812dc35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Tue, 22 Mar 2022 13:24:02 -0400 Subject: [PATCH 2/2] Update release date --- History.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/History.md b/History.md index 04b36df0..ac8d9f87 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,6 @@ # Liquid Change Log -## 5.3.0 2022-03-18 +## 5.3.0 2022-03-22 ### Fixes * StandardFilter: Fix missing @context on iterations (#1525) [Thierry Joyal]