From 1cc9346bd0b94a3570f1a158872812c38d5e6520 Mon Sep 17 00:00:00 2001 From: Ian Ker-Seymer Date: Thu, 15 Aug 2024 14:10:33 -0400 Subject: [PATCH] Do not free by default --- lib/liquid/environment.rb | 2 +- lib/liquid/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/liquid/environment.rb b/lib/liquid/environment.rb index fdd404fc..fe85eed0 100644 --- a/lib/liquid/environment.rb +++ b/lib/liquid/environment.rb @@ -46,7 +46,7 @@ module Liquid ret.error_mode = error_mode if error_mode ret.exception_renderer = exception_renderer if exception_renderer yield ret if block_given? - ret.freeze + # ret.freeze end # Returns the default environment instance. diff --git a/lib/liquid/version.rb b/lib/liquid/version.rb index 98fa9ac6..ee93b403 100644 --- a/lib/liquid/version.rb +++ b/lib/liquid/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module Liquid - VERSION = "5.6.0.alpha" + VERSION = "5.5.2.alpha" end