From dde6a10cabb21ccdb707e90e7c0a9938a118aaa7 Mon Sep 17 00:00:00 2001 From: Nathan Harkenrider <824186+NateHark@users.noreply.github.com> Date: Tue, 28 Dec 2021 14:28:33 -0800 Subject: [PATCH 1/2] feat: implement cache busting for CSS (#444) --- layouts/partials/head/style.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head/style.html b/layouts/partials/head/style.html index 431e212..ee6b017 100644 --- a/layouts/partials/head/style.html +++ b/layouts/partials/head/style.html @@ -1,3 +1,3 @@ {{ $sass := resources.Get "scss/style.scss" }} -{{ $style := $sass | resources.ToCSS | minify }} +{{ $style := $sass | resources.ToCSS | minify | resources.Fingerprint "sha256" }} \ No newline at end of file From d1656215684b042ea341e2ba93933722956630b5 Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Wed, 29 Dec 2021 00:32:08 +0100 Subject: [PATCH 2/2] release: 3.6.0 --- layouts/partials/footer/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/footer/footer.html b/layouts/partials/footer/footer.html index ba38464..a2baf19 100644 --- a/layouts/partials/footer/footer.html +++ b/layouts/partials/footer/footer.html @@ -1,4 +1,4 @@ -{{- $ThemeVersion := "3.5.0" -}} +{{- $ThemeVersion := "3.6.0" -}}