diff options
author | Bjørn Erik Pedersen <[email protected]> | 2021-05-23 10:05:23 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-05-23 10:33:56 +0200 |
commit | bc1e05286a96d08ad02ad200d6a4076bb01c486e (patch) | |
tree | ead5ddddc6933af456df931f147d08c6caf52204 /common | |
parent | f518b4f71e1a61b09d660b5c284121ebf3b3b86b (diff) | |
download | hugo-bc1e05286a96d08ad02ad200d6a4076bb01c486e.tar.gz hugo-bc1e05286a96d08ad02ad200d6a4076bb01c486e.zip |
deps: Update to LibSASS 3.6.5
See https://github.com/sass/libsass/releases/tag/3.6.5
Diffstat (limited to 'common')
-rw-r--r-- | common/hugo/hugo.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/hugo/hugo.go b/common/hugo/hugo.go index d8d1c7c12..13ed47736 100644 --- a/common/hugo/hugo.go +++ b/common/hugo/hugo.go @@ -122,7 +122,8 @@ func GetDependencyList() []string { if IsExtended { deps = append( deps, - formatDep("github.com/sass/libsass", "3.6.4"), + // TODO(bep) consider adding a DepsNonGo() method to these upstream projects. + formatDep("github.com/sass/libsass", "3.6.5"), formatDep("github.com/webmproject/libwebp", "v1.2.0"), ) } |