diff --git a/CHANGELOG.md b/CHANGELOG.md index 256e3d7f..64d4507b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,33 @@ # Changelog +## [2024.5.44](https://github.com/davidsneighbour/kollitsch.dev/compare/v2024.5.43...v2024.5.44) (2024-11-07) + + +### Content + +* **fix:** proper gohugo methods for partial calls ([18914d8](https://github.com/davidsneighbour/kollitsch.dev/commit/18914d876cc42f1fe3787730b8cce3e1169dc074)) +* **new:** add hugov blog post ([ae1e00d](https://github.com/davidsneighbour/kollitsch.dev/commit/ae1e00d3313318e5efb8d06720cd8499996228af)) +* **new:** archetype of a synthesizer post ([932290e](https://github.com/davidsneighbour/kollitsch.dev/commit/932290e92e78f883e3099096414b85dc50eb24b6)) + + +### Refactors + +* cleanup config file ([f2581f1](https://github.com/davidsneighbour/kollitsch.dev/commit/f2581f1685cae6658bec727182ce05a9065eb997)) + + +### Chore + +* **deps:** update dependencies ([bb5ecbc](https://github.com/davidsneighbour/kollitsch.dev/commit/bb5ecbc5a6ac5ab1b7da135a71d5bb4b0c510653)) + + +### Configuration + +* update lychee configuration ([7e01d59](https://github.com/davidsneighbour/kollitsch.dev/commit/7e01d5961b01130a4eca3819bd9040622ea3cb47)) + + +### Build System + +* **deps:** bump the npm_and_yarn group with 2 updates ([#1280](https://github.com/davidsneighbour/kollitsch.dev/issues/1280)) ([e0b29a4](https://github.com/davidsneighbour/kollitsch.dev/commit/e0b29a4481533947ffb0bc8d23cc1c75205832f9)) + ## [2024.5.43](https://github.com/davidsneighbour/kollitsch.dev/compare/v2024.5.42...v2024.5.43) (2024-11-07) diff --git a/CITATION.cff b/CITATION.cff index 1df850c3..33b7922c 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.43 +version: 2024.5.44 date-released: 2024-11-07 url: "https://github.com/davidsneighbour/kollitsch.dev" diff --git a/assets/data/build.json b/assets/data/build.json index 245a39cf..c7686716 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.43" + "version": "2024.5.44" } diff --git a/go.mod b/go.mod index 800cd452..45d1985d 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,5 @@ module github.com/davidsneighbour/kollitsch.dev go 1.21 -require github.com/davidsneighbour/hugo-darkskies v1.2024.29 // indirect +require ( +) diff --git a/package.json b/package.json index 882537b3..9723ad3f 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.43", + "version": "2024.5.44", "license": "UNLICENSED", "private": true, "repository": "davidsneighbour/kollitsch.dev",