diff --git a/History.md b/History.md index 763b8053..183a8ab9 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,14 @@ # Liquid Change Log +## 5.10.0 +* Introduce support for Inline Snippets [Julia Boutin] + ``` + {%- snippet snowdevil -%} + Snowdevil + {%- endsnippet -%} + {% render snowdevil %} + ``` + ## 5.9.0 * Introduce `:rigid` error mode for stricter, safer parsing of all tags [CP Clermont, Guilherme Carreiro] diff --git a/lib/liquid/version.rb b/lib/liquid/version.rb index 6f3e83e7..c16430f2 100644 --- a/lib/liquid/version.rb +++ b/lib/liquid/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module Liquid - VERSION = "5.9.0" + VERSION = "5.10.0" end