Skip to content

Releases: fstaudt/gradle-hugo-plugin

0.7.1

01 Apr 19:20
Compare
Choose a tag to compare
  • ✨ bump default Hugo version to 0.124.1
  • 👷 bump Gradle to 8.7
  • ✅ test against Gradle 7.6.4 and 8.0

0.7.0

29 Dec 18:16
Compare
Choose a tag to compare
  • ✨ make plugin compatible with configuration cache
  • ✨ bump default hugo version to 0.121.1
  • 🐛 disable build cache for tasks with unpredictable outputs
  • 👷 bump gradle to 8.5
  • ✅ register test suites for selected gradle versions

Contributors

0.6.2

07 Nov 19:53
Compare
Choose a tag to compare
  • ✨ bump default hugo version to 0.120.3
  • 👷 bump gradle to 8.4
  • 👷 bump com.gradle.plugin-publish to 1.2.1

0.6.1

28 Aug 17:42
Compare
Choose a tag to compare
  • ✨ bump default hugo version to 0.117.0
  • 👷 bump gradle to 8.3
  • 👷 bump com.gradle.plugin-publish to 1.2.0

0.6.0

26 Mar 16:04
Compare
Choose a tag to compare
  • ✨ bump default hugo version to 0.111.3
  • 👷 bump gradle to 8.0.2
  • 👷 bump JVM toolchain to 11

0.5.1

01 Jan 16:47
Compare
Choose a tag to compare
  • ✨ bump default hugo version to 0.109.0
  • 👷 bump gradle to 7.6
  • 👷 bumps com.gradle.plugin-publish to 1.1.0

0.5.0

04 Oct 22:42
Compare
Choose a tag to compare

✨ bump default hugo version to 0.104.3
👷 bump gradle to 7.5.1
👷 bumps com.gradle.plugin-publish to 1.0.0
👷 GitHub workflows for build, release & dependabot

Breaking changes

Default download URL have been updated to be compliant with Hugo versions above 0.103.0.
For older versions, download URL for the 3 OS must be overwritten in hugo extension to be compliant with the Hugo version:

hugo {
    version = "0.93.0"
    windowsDownloadUrl = "https://github.com/gohugoio/hugo/releases/download/v{0}/hugo_extended_{0}_Windows-64bit.zip"
    linuxDownloadUrl = "https://github.com/gohugoio/hugo/releases/download/v{0}/hugo_extended_{0}_Linux-64bit.tar.gz"
    macOSDownloadUrl = "https://github.com/gohugoio/hugo/releases/download/v{0}/hugo_extended_{0}_macOS-64bit.tar.gz"
}

0.4.0

07 May 10:55
Compare
Choose a tag to compare

✨ configurable directory for Hugo sources
✨ bump default hugo version to 0.98.0
👷 bump gradle to 7.4.1

Breaking changes

source directory for hugo site defaults to site folder in project (previously src/main/hugo).

To revert to previous configuration, source directory can be overwritten in hugo extension:

hugo {
  sourceDirectory = "src/main/hugo"
}

v0.3.0

07 Mar 14:52
Compare
Choose a tag to compare

✨ hugoServer task to run server for development
✨ bump default hugo version to 0.93.2
🐛 consistent configuration in hugoBuild for additional args
👷 bump gradle to 7.4

v0.2.0

08 Nov 19:15
Compare
Choose a tag to compare
  • 🐛 avoid Gradle cache hits on hugoDownload between different operating systems

Full Changelog: 0.1.0...0.2.0