From 5f893f890f656e5074608b09d4a4d32f2d6649cf Mon Sep 17 00:00:00 2001 From: Michael Hawkins Date: Wed, 31 Aug 2022 15:28:59 +0800 Subject: [PATCH] MDL-75550 lib: Update Mustache const to reflect correct version Mustache version 2.14.1 is already included, but the VERSION const incorrectly listed 2.14.0 in the tagged Mustache release. A later upstream commit corrected this in the library, which this now matches. --- lib/mustache/src/Mustache/Engine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mustache/src/Mustache/Engine.php b/lib/mustache/src/Mustache/Engine.php index 5e96e4118c0c3..0604f6d18ee61 100644 --- a/lib/mustache/src/Mustache/Engine.php +++ b/lib/mustache/src/Mustache/Engine.php @@ -23,7 +23,7 @@ */ class Mustache_Engine { - const VERSION = '2.14.0'; + const VERSION = '2.14.1'; const SPEC_VERSION = '1.2.2'; const PRAGMA_FILTERS = 'FILTERS';