diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f11e9978..9bec6b517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ Changelog +## [2024.5.23](https://github.com/davidsneighbour/kollitsch.dev/compare/v2024.5.22...v2024.5.23) (2024-09-27) + + +### Chore + +* **config:** fix theme colors for vscode workspace ([faae543](https://github.com/davidsneighbour/kollitsch.dev/commit/faae543035ffe0307fcb80c5c08c8cb2b0f23ded)) +* **config:** move frontmatter configuration into frontmatter package ([6481ad3](https://github.com/davidsneighbour/kollitsch.dev/commit/6481ad3d44276b801dea40763b950864289390be)) +* **deps:** update dependencies ([4ff86ce](https://github.com/davidsneighbour/kollitsch.dev/commit/4ff86ce77edadf01d8a94f7aa62d12e4186dca6e)) + ## [2024.5.22](https://github.com/davidsneighbour/kollitsch.dev/compare/v2024.5.21...v2024.5.22) (2024-09-23) diff --git a/CITATION.cff b/CITATION.cff index 89709aabe..b444dc1cc 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,6 +5,6 @@ authors: given-names: "Patrick" orcid: "https://orcid.org/0000-0001-6250-2135" title: "kollitsch.dev" -version: 2024.5.22 -date-released: 2024-09-23 +version: 2024.5.23 +date-released: 2024-09-27 url: "https://github.com/davidsneighbour/kollitsch.dev" diff --git a/assets/data/build.json b/assets/data/build.json index 2e05f3eaa..a6db0141e 100644 --- a/assets/data/build.json +++ b/assets/data/build.json @@ -1,4 +1,4 @@ { "_comment": "This file is used to determine the current build version of the website. Do not modify this file, it is updated automatically.", - "version": "2024.5.22" + "version": "2024.5.23" } diff --git a/go.mod b/go.mod index d61548ada..45d1985d1 100644 --- a/go.mod +++ b/go.mod @@ -3,10 +3,4 @@ module github.com/davidsneighbour/kollitsch.dev go 1.21 require ( - github.com/Heydon/REVENGE.CSS v0.0.0-20200622155810-b5f5f04ac1b5 // indirect - github.com/aFarkas/lazysizes v0.0.0-20210517092641-1523a4ff4579 // indirect - github.com/csswizardry/ct v0.0.0-20230131155739-4e0d88c1a9ff // indirect - github.com/paulirish/lite-youtube-embed v0.3.3 // indirect - github.com/twbs/icons v1.11.3 // indirect - github.com/zenorocha/clipboard.js v2.0.11+incompatible // indirect ) diff --git a/go.sum b/go.sum index 92e6a5351..e1a8f2d21 100644 --- a/go.sum +++ b/go.sum @@ -12,6 +12,8 @@ github.com/davidsneighbour/hugo-darksky v0.2024.6 h1:PMTy0B3u01DY0ps1sK4S2N+WmOD github.com/davidsneighbour/hugo-darksky v0.2024.6/go.mod h1:G7IXz8sqmcaRCP1YW+/W+nFeYJ6Td5faNTIR89o6Bgg= github.com/davidsneighbour/hugo-darksky v0.2024.7 h1:ISFiFAUOJSJ/fzGNMkeruBkN7nVTWOs4Lzjq1VPhVNg= github.com/davidsneighbour/hugo-darksky v0.2024.7/go.mod h1:m613xcRIpbtbQk7Rk5Rwv0yJ/y/Iasp3mv34N7RYLfY= +github.com/davidsneighbour/hugo-darksky v0.2024.11 h1:gPAOn1tEKVAKREc/LaFiMTZZT6VY92LGd/q9Po1hyfc= +github.com/davidsneighbour/hugo-darksky v0.2024.11/go.mod h1:m613xcRIpbtbQk7Rk5Rwv0yJ/y/Iasp3mv34N7RYLfY= github.com/paulirish/lite-youtube-embed v0.3.3 h1:AP8TnWs7WZGe3Svuhfl+RMsFk7by6z6D3mhWFsY3cR0= github.com/paulirish/lite-youtube-embed v0.3.3/go.mod h1:9nuUWCzbFF/vvl3ClpZ1KsYFi/hlKjVOkmG8E+nsGDY= github.com/twbs/icons v1.11.3 h1:XhvrQ1XDom9ggBbQx3wQCFGEr8qAQwQP/dAcw8OXMtA= diff --git a/package.json b/package.json index e4d8fe98a..0ba74bc1a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@davidsneighbour/kollitsch-dev", "description": "Website and content for kollitsch.dev", - "version": "2024.5.22", + "version": "2024.5.23", "license": "UNLICENSED", "private": true, "repository": "davidsneighbour/kollitsch.dev",