From eae57652a44754d1cf6410e5ec731cd3e6de28b5 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Tue, 8 Oct 2019 14:49:42 -0400 Subject: [PATCH] FIX: Bump Compiler Version In 98719be we fixed raw handlebars, but they won't be recompiled without this bump. --- app/models/theme_field.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/theme_field.rb b/app/models/theme_field.rb index a18da47c5f3..ee94014585b 100644 --- a/app/models/theme_field.rb +++ b/app/models/theme_field.rb @@ -60,7 +60,7 @@ class ThemeField < ActiveRecord::Base validates :name, format: { with: /\A[a-z_][a-z0-9_-]*\z/i }, if: Proc.new { |field| ThemeField.theme_var_type_ids.include?(field.type_id) } - BASE_COMPILER_VERSION = 12 + BASE_COMPILER_VERSION = 13 DEPENDENT_CONSTANTS = [BASE_COMPILER_VERSION, GlobalSetting.cdn_url] COMPILER_VERSION = Digest::SHA1.hexdigest(DEPENDENT_CONSTANTS.join)