diff --git a/CHANGELOG.md b/CHANGELOG.md index 77169d1..c2f7212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.2] - 2023-12-23 + +### Fixed + +- Fixed Thymeleaf layout plugin not working with shadow JAR. + ## [0.1.1] - 2023-12-23 ### Fixed @@ -19,7 +25,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Initial release. -[Unreleased]: https://github.com/refinedmods/refinedsites/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/refinedmods/refinedsites/compare/v0.1.2...HEAD + +[0.1.2]: https://github.com/refinedmods/refinedsites/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/refinedmods/refinedsites/compare/v0.1.0...v0.1.1 diff --git a/build.gradle b/build.gradle index cb0df8d..4b85262 100644 --- a/build.gradle +++ b/build.gradle @@ -26,4 +26,9 @@ dependencies { implementation 'org.kohsuke:github-api:1.318' implementation 'org.eclipse.jgit:org.eclipse.jgit:6.7.0.202309050840-r' implementation 'org.commonmark:commonmark:0.21.0' -} \ No newline at end of file +} + +// https://github.com/ultraq/thymeleaf-layout-dialect/issues/220#issuecomment-944874151 +shadowJar { + mergeGroovyExtensionModules() +}