Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

249,852

Downloads of v 0.47:

236

Last Update:

21 Aug 2018

Package Maintainer(s):

Software Author(s):

  • spf13

Tags:

hugo admin blog website network

hugo

This is not the latest version of hugo available.

  • 1
  • 2
  • 3

0.47 | Updated: 21 Aug 2018

Downloads:

249,852

Downloads of v 0.47:

236

Maintainer(s):

Software Author(s):

  • spf13

hugo 0.47

This is not the latest version of hugo available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install hugo, run the following command from the command line or from PowerShell:

>

To upgrade hugo, run the following command from the command line or from PowerShell:

>

To uninstall hugo, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade hugo -y --source="'INTERNAL REPO URL'" --version="'0.47'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade hugo -y --source="'INTERNAL REPO URL'" --version="'0.47'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install hugo
  win_chocolatey:
    name: hugo
    version: '0.47'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'hugo' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.47'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller hugo
{
    Name     = "hugo"
    Version  = "0.47"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'hugo':
  ensure   => '0.47',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 21 Aug 2018.

Description

Hugo

A Fast and Flexible Static Site Generator built with love by spf13 and friends in Go.

Website |
Forum |
Developer Chat (no support) |
Documentation |
Installation Guide |
Contribution Guide |
Twitter

GoDoc
Linux and OS X Build Status
Windows Build Status
Dev chat at https://gitter.im/spf13/hugo
Go Report Card

Overview

Hugo is a static HTML and CSS website generator written in [Go][].
It is optimized for speed, easy use and configurability.
Hugo takes a directory with content and templates and renders them into a full HTML website.

Hugo relies on Markdown files with front matter for meta data.
And you can run Hugo from any directory.
This works well for shared hosts and other systems where you don’t have a privileged account.

Hugo renders a typical website of moderate size in a fraction of a second.
A good rule of thumb is that each piece of content renders in around 1 millisecond.

Hugo is designed to work well for any kind of website including blogs, tumbles and docs.

Contributing to Hugo

We welcome contributions to Hugo of any kind including documentation, themes,
organization, tutorials, blog posts, bug reports, issues, feature requests,
feature implementations, pull requests, answering questions on the forum,
helping to manage issues, etc.

The Hugo community and maintainers are very active and helpful, and the project benefits greatly from this activity.

Asking Support Questions

We have an active discussion forum where users and developers can ask questions.
Please don't use the Github issue tracker to ask questions.

Reporting Issues

If you believe you have found a defect in Hugo or its documentation, use
the Github issue tracker to report the problem to the Hugo maintainers.
If you're not sure if it's a bug or not, start by asking in the discussion forum.
When reporting the issue, please provide the version of Hugo in use (hugo version).

Analytics


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$packageName= $env:ChocolateyPackageName
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = "https://github.com/spf13/hugo/releases/download/v$($env:ChocolateyPackageVersion)/hugo_$($env:ChocolateyPackageVersion)_Windows-32bit.zip"
$url64      = "https://github.com/spf13/hugo/releases/download/v$($env:ChocolateyPackageVersion)/hugo_$($env:ChocolateyPackageVersion)_Windows-64bit.zip"

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  url           = $url
  url64bit      = $url64

  checksum      = '3b710735b6ea15380b480fb7727b1d814f1a880faf78f610a714d45ddfd98a43'
  checksumType  = 'sha256'
  checksum64    = '9e528cf75dcc58784602bbbae1d2eb9831ac5137ee032ea1019161e721df9417'
  checksumType64= 'sha256'
}

Install-ChocolateyZipPackage @packageArgs
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$hugoExe = Get-ChildItem $(Split-Path -Parent $MyInvocation.MyCommand.Definition) | Where-Object -Property Name -Match "hugo.exe"

if (-Not($hugoExe)) 
{
    Write-Error -Message "hugo exe is not found, please contact the maintainer of the package" -Category ResourceUnavailable
}

Write-Host "found hugo exe in $($hugoExe.FullName)"
Write-Host "attempting to remove it" 
Remove-Item $hugoExe.FullName

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Hugo 0.125.0 2 Tuesday, April 16, 2024 Pending Automated Review
Hugo 0.124.0 277 Saturday, March 16, 2024 Approved
Hugo 0.123.8 483 Thursday, March 7, 2024 Approved
Hugo 0.123.7 400 Friday, March 1, 2024 Approved
Hugo 0.123.6 194 Thursday, February 29, 2024 Approved
Hugo 0.123.5 57 Wednesday, February 28, 2024 Approved
Hugo 0.123.4 199 Monday, February 26, 2024 Approved
Hugo 0.123.3 249 Friday, February 23, 2024 Approved
Hugo 0.123.2 145 Thursday, February 22, 2024 Approved
Hugo 0.123.1 160 Wednesday, February 21, 2024 Approved
Hugo 0.123.0 194 Monday, February 19, 2024 Approved
Hugo 0.122.0 887 Friday, January 26, 2024 Approved
Hugo 0.121.2 918 Friday, January 5, 2024 Approved
Hugo 0.121.1 989 Friday, December 8, 2023 Approved
Hugo 0.121.0 259 Tuesday, December 5, 2023 Approved
Hugo 0.120.4 1062 Wednesday, November 8, 2023 Approved
Hugo 0.120.3 491 Thursday, November 2, 2023 Approved
Hugo 0.120.2 173 Tuesday, October 31, 2023 Approved
Hugo 0.120.1 157 Monday, October 30, 2023 Approved
Hugo 0.119.0 1553 Sunday, September 24, 2023 Approved
Hugo 0.118.2 1043 Thursday, August 31, 2023 Approved
Hugo 0.117.0 1006 Monday, August 7, 2023 Approved
Hugo 0.116.1 477 Tuesday, August 1, 2023 Approved
Hugo 0.116.0 186 Monday, July 31, 2023 Approved
Hugo 0.115.4 597 Thursday, July 20, 2023 Approved
Hugo 0.115.3 506 Thursday, July 13, 2023 Approved
Hugo 0.115.2 439 Saturday, July 8, 2023 Approved
Hugo 0.115.1 392 Tuesday, July 4, 2023 Approved
Hugo 0.115.0 356 Thursday, June 29, 2023 Approved
Hugo 0.114.1 489 Friday, June 23, 2023 Approved
Hugo 0.114.0 354 Monday, June 19, 2023 Approved
Hugo 0.113.0 795 Monday, June 5, 2023 Approved
Hugo 0.112.7 83 Monday, June 5, 2023 Approved
Hugo 0.112.5 523 Monday, May 29, 2023 Approved
Hugo 0.112.4 132 Sunday, May 28, 2023 Approved
Hugo 0.112.3 374 Wednesday, May 24, 2023 Approved
Hugo 0.112.2 47 Wednesday, May 24, 2023 Approved
Hugo 0.112.1 182 Tuesday, May 23, 2023 Approved
Hugo 0.111.3 2662 Sunday, March 12, 2023 Approved
Hugo 0.111.2 561 Sunday, March 5, 2023 Approved
Hugo 0.111.1 361 Thursday, March 2, 2023 Approved
Hugo 0.111.0 142 Thursday, March 2, 2023 Approved
Hugo 0.110.0 1701 Tuesday, January 17, 2023 Approved
Hugo 0.109.0 1311 Friday, December 23, 2022 Approved
Hugo 0.108.0 1040 Tuesday, December 6, 2022 Approved
Hugo 0.107.0 820 Thursday, November 24, 2022 Approved
Hugo 0.106.0 596 Thursday, November 17, 2022 Approved
Hugo 0.105.0 1757 Friday, October 28, 2022 Approved
Hugo 0.104.3 2265 Tuesday, October 4, 2022 Approved
Hugo 0.104.2 761 Thursday, September 29, 2022 Approved
Hugo 0.104.1 494 Monday, September 26, 2022 Approved
Hugo 0.104.0 469 Friday, September 23, 2022 Approved
Hugo 0.103.1 455 Wednesday, September 21, 2022 Approved
Hugo 0.102.3 1912 Thursday, September 1, 2022 Approved
Hugo 0.102.2 257 Wednesday, August 31, 2022 Approved
Hugo 0.102.1 370 Monday, August 29, 2022 Approved
Hugo 0.102.0 283 Sunday, August 28, 2022 Approved
Hugo 0.101.0 5266 Thursday, June 16, 2022 Approved
Hugo 0.100.2 888 Wednesday, June 8, 2022 Approved
Hugo 0.100.1 878 Wednesday, June 1, 2022 Approved
Hugo 0.100.0 330 Tuesday, May 31, 2022 Approved
Hugo 0.99.1 1264 Wednesday, May 18, 2022 Approved
Hugo 0.99.0 486 Monday, May 16, 2022 Approved
Hugo 0.98.0 1676 Thursday, April 28, 2022 Approved
Hugo 0.97.3 1239 Tuesday, April 19, 2022 Approved
Hugo 0.97.2 321 Sunday, April 17, 2022 Approved
Hugo 0.97.1 160 Saturday, April 16, 2022 Approved
Hugo 0.97.0 405 Thursday, April 14, 2022 Approved
Hugo 0.96.0 2055 Saturday, March 26, 2022 Approved
Hugo 0.95.0 1242 Wednesday, March 16, 2022 Approved
Hugo 0.94.2 600 Saturday, March 12, 2022 Approved
Hugo 0.94.1 214 Friday, March 11, 2022 Approved
Hugo 0.94.0 248 Thursday, March 10, 2022 Approved
Hugo 0.93.3 446 Tuesday, March 8, 2022 Approved
Hugo 0.93.2 728 Friday, March 4, 2022 Approved
Hugo 0.93.1 398 Wednesday, March 2, 2022 Approved
Hugo 0.93.0 491 Monday, February 28, 2022 Approved
Hugo 0.92.2 2233 Friday, February 11, 2022 Approved
Hugo 0.92.1 1590 Thursday, January 27, 2022 Approved
Hugo 0.92.0 3869 Wednesday, January 12, 2022 Approved
Hugo 0.91.2 1780 Thursday, December 23, 2021 Approved
Hugo 0.91.1 227 Wednesday, December 22, 2021 Approved
Hugo 0.91.0 80 Friday, December 17, 2021 Approved
Hugo 0.90.1 1351 Friday, December 10, 2021 Approved
Hugo 0.90.0 377 Wednesday, December 8, 2021 Approved
Hugo 0.89.4 1964 Wednesday, November 17, 2021 Approved
Hugo 0.89.3 390 Monday, November 15, 2021 Approved
Hugo 0.89.2 840 Monday, November 8, 2021 Approved
Hugo 0.89.1 584 Friday, November 5, 2021 Approved
Hugo 0.89.0 495 Tuesday, November 2, 2021 Approved
Hugo 0.88.1 4582 Saturday, September 4, 2021 Approved
Hugo 0.88.0 405 Thursday, September 2, 2021 Approved
Hugo 0.87.0 2598 Tuesday, August 3, 2021 Approved
Hugo 0.86.1 689 Friday, July 30, 2021 Approved
Hugo 0.86.0 1216 Wednesday, July 21, 2021 Approved
Hugo 0.85.0 1725 Monday, July 5, 2021 Approved
Hugo 0.84.4 595 Thursday, July 1, 2021 Approved
Hugo 0.84.3 451 Tuesday, June 29, 2021 Approved
Hugo 0.84.2 403 Monday, June 28, 2021 Approved
Hugo 0.84.1 611 Thursday, June 24, 2021 Approved
Hugo 0.84.0 729 Friday, June 18, 2021 Approved
Hugo 0.83.1 3923 Sunday, May 2, 2021 Approved
Hugo 0.83.0 277 Saturday, May 1, 2021 Approved
Hugo 0.82.1 1402 Tuesday, April 20, 2021 Approved
Hugo 0.82.0 3014 Sunday, March 21, 2021 Approved
Hugo 0.81.0 3932 Friday, February 19, 2021 Approved
Hugo 0.80.0 4692 Thursday, December 31, 2020 Approved
Hugo 0.79.1 1263 Saturday, December 19, 2020 Approved
Hugo 0.79.0 2134 Friday, November 27, 2020 Approved
Hugo 0.78.2 1334 Friday, November 13, 2020 Approved
Hugo 0.78.1 1437 Thursday, November 5, 2020 Approved
Hugo 0.78.0 520 Tuesday, November 3, 2020 Approved
Hugo 0.77.0 796 Friday, October 30, 2020 Approved
Hugo 0.76.5 2026 Wednesday, October 14, 2020 Approved
Hugo 0.76.4 775 Monday, October 12, 2020 Approved
Hugo 0.76.3 676 Thursday, October 8, 2020 Approved
Hugo 0.76.2 407 Wednesday, October 7, 2020 Approved
Hugo 0.76.0 272 Tuesday, October 6, 2020 Approved
Hugo 0.75.1 2220 Tuesday, September 15, 2020 Approved
Hugo 0.75.0 362 Monday, September 14, 2020 Approved
Hugo 0.74.3 4102 Thursday, July 23, 2020 Approved
Hugo 0.74.2 872 Friday, July 17, 2020 Approved
Hugo 0.74.1 721 Tuesday, July 14, 2020 Approved
Hugo 0.74.0 299 Monday, July 13, 2020 Approved
Hugo 0.73.0 2010 Tuesday, June 23, 2020 Approved
Hugo 0.72.0 2426 Sunday, May 31, 2020 Approved
Hugo 0.71.1 927 Monday, May 25, 2020 Approved
Hugo 0.71.0 966 Monday, May 18, 2020 Approved
Hugo 0.70.0 1878 Wednesday, May 6, 2020 Approved
Hugo 0.69.2 1444 Friday, April 24, 2020 Approved
Hugo 0.69.1 602 Wednesday, April 22, 2020 Approved
Hugo 0.69.0 1589 Friday, April 10, 2020 Approved
Hugo 0.68.3 1787 Friday, March 27, 2020 Approved
Hugo 0.68.2 633 Tuesday, March 24, 2020 Approved
Hugo 0.68.1 540 Sunday, March 22, 2020 Approved
Hugo 0.68.0 330 Saturday, March 21, 2020 Approved
Hugo 0.67.1 2195 Monday, March 16, 2020 Approved
Hugo 0.67.0 906 Tuesday, March 10, 2020 Approved
Hugo 0.66.0 978 Tuesday, March 3, 2020 Approved
Hugo 0.65.3 1477 Sunday, February 23, 2020 Approved
Hugo 0.65.2 473 Friday, February 21, 2020 Approved
Hugo 0.65.1 241 Thursday, February 20, 2020 Approved
Hugo 0.65.0 199 Thursday, February 20, 2020 Approved
Hugo 0.64.1 1901 Monday, February 10, 2020 Approved
Hugo 0.64.0 950 Tuesday, February 4, 2020 Approved
Hugo 0.63.2 1224 Monday, January 27, 2020 Approved
Hugo 0.63.1 639 Friday, January 24, 2020 Approved
Hugo 0.63.0 264 Thursday, January 23, 2020 Approved
Hugo 0.62.2 2502 Monday, January 6, 2020 Approved
Hugo 0.62.1 803 Wednesday, January 1, 2020 Approved
Hugo 0.62.0 988 Monday, December 23, 2019 Approved
Hugo 0.61.0 1405 Wednesday, December 11, 2019 Approved
Hugo 0.60.1 1334 Friday, November 29, 2019 Approved
Hugo 0.60.0 564 Wednesday, November 27, 2019 Approved
Hugo 0.59.1 2527 Thursday, October 31, 2019 Approved
Hugo 0.59.0 1319 Monday, October 21, 2019 Approved
Hugo 0.58.3 3214 Thursday, September 19, 2019 Approved
Hugo 0.58.2 1045 Friday, September 13, 2019 Approved
Hugo 0.58.1 1195 Friday, September 6, 2019 Approved
Hugo 0.58.0 528 Wednesday, September 4, 2019 Approved
Hugo 0.57.2 2633 Saturday, August 17, 2019 Approved
Hugo 0.57.1 434 Friday, August 16, 2019 Approved
Hugo 0.57.0 513 Wednesday, August 14, 2019 Approved
Hugo 0.56.3 1514 Wednesday, July 31, 2019 Approved
Hugo 0.56.2 411 Tuesday, July 30, 2019 Approved
Hugo 0.56.1 467 Sunday, July 28, 2019 Approved
Hugo 0.56.0 619 Thursday, July 25, 2019 Approved
Hugo 0.55.6 6094 Saturday, May 18, 2019 Approved
Hugo 0.55.5 1856 Thursday, May 2, 2019 Approved
Hugo 0.55.4 1032 Thursday, April 25, 2019 Approved
Hugo 0.55.3 767 Saturday, April 20, 2019 Approved
Hugo 0.55.2 597 Wednesday, April 17, 2019 Approved
Hugo 0.55.1 935 Friday, April 12, 2019 Approved
Hugo 0.55.0 821 Monday, April 8, 2019 Approved
Hugo 0.54.0 6058 Friday, February 1, 2019 Approved
Hugo 0.53 3218 Monday, December 24, 2018 Approved
Hugo 0.52 1912 Wednesday, November 28, 2018 Approved
Hugo 0.51 1446 Monday, November 12, 2018 Approved
Hugo 0.50 265 Monday, November 12, 2018 Approved
hugo 0.49 3023 Monday, October 1, 2018 Approved
hugo 0.48 2108 Thursday, September 6, 2018 Approved
hugo 0.47.1 1586 Tuesday, August 21, 2018 Approved
hugo 0.47 236 Tuesday, August 21, 2018 Approved
hugo 0.46 230 Tuesday, August 21, 2018 Approved
hugo 0.45.1 251 Tuesday, August 21, 2018 Approved
hugo 0.45 2303 Monday, July 23, 2018 Approved
hugo 0.44 915 Saturday, July 14, 2018 Approved
hugo 0.43 288 Saturday, July 14, 2018 Approved
hugo 0.42.2 327 Friday, July 13, 2018 Approved
hugo 0.42.1 2128 Thursday, June 14, 2018 Approved
hugo 0.42 290 Thursday, June 14, 2018 Approved
hugo 0.41 1322 Friday, June 1, 2018 Approved
hugo 0.40.3 1475 Monday, May 14, 2018 Approved
hugo 0.40.2 1171 Wednesday, May 2, 2018 Approved
hugo 0.40.1 310 Wednesday, May 2, 2018 Approved
hugo 0.40 898 Tuesday, April 24, 2018 Approved
hugo 0.39 312 Tuesday, April 24, 2018 Approved
hugo 0.38.2 1170 Friday, April 13, 2018 Approved
hugo 0.38.1 318 Friday, April 13, 2018 Approved
hugo 0.38 1042 Tuesday, April 3, 2018 Approved
hugo 0.37.1 272 Tuesday, April 3, 2018 Approved
hugo 0.37 2211 Monday, March 5, 2018 Approved
hugo 0.36 1601 Monday, February 12, 2018 Approved
hugo 0.35 521 Friday, February 9, 2018 Approved
hugo 0.34 904 Monday, January 29, 2018 Approved
hugo 0.33 343 Monday, January 29, 2018 Approved
hugo 0.32.4 1096 Monday, January 15, 2018 Approved
hugo 0.32.3 334 Monday, January 15, 2018 Approved
hugo 0.32.2 938 Thursday, January 4, 2018 Approved
hugo 0.32.1 319 Thursday, January 4, 2018 Approved
hugo 0.32 343 Thursday, January 4, 2018 Approved
hugo 0.31.1 1711 Friday, December 22, 2017 Approved
hugo 0.30.2 2689 Monday, October 30, 2017 Approved
hugo 0.30.1 350 Monday, October 30, 2017 Approved
hugo 0.30 1058 Tuesday, October 17, 2017 Approved
hugo 0.29 961 Friday, October 6, 2017 Approved
hugo 0.27.1 1234 Monday, September 18, 2017 Approved
hugo 0.26 355 Monday, September 18, 2017 Approved
hugo 0.25.1 3161 Sunday, July 16, 2017 Approved
hugo 0.22.1 1005 Tuesday, June 13, 2017 Approved
hugo 0.20.5 1458 Tuesday, April 25, 2017 Approved
hugo 0.20.0 761 Tuesday, April 11, 2017 Approved
hugo 0.19.0 1719 Wednesday, March 1, 2017 Approved
hugo 0.18.1.20170131 1315 Tuesday, January 31, 2017 Approved
hugo 0.18.1 477 Friday, January 13, 2017 Approved
hugo 0.17 706 Wednesday, October 19, 2016 Approved
hugo 0.15 587 Thursday, March 3, 2016 Approved
hugo 0.14 565 Friday, September 4, 2015 Approved
hugo 0.12 658 Sunday, December 7, 2014 Approved

0.47 August 16th 2018

Enhancements

Templates

  • Suppress blank lines from opengraph internal template c09ee78f @anthonyfok
  • Add MIME type to embedded JS 755d1ffe @bep #5042
  • Add os.Stat template function d7112085 @satotake

Output

  • Add support for minification of final output 789ef8c6 @bep #1251

Other

  • Regenerate CLI docs 4a16b5f4 @bep
  • Include theme name in version mismatch error e5052f4e @bep #5044
  • Make the JS minifier matcher less specific c81fbf46 @bep #5073
  • Close file when done f6ae436c @bep #5062
  • https links to 3rd party sites c2a67413 @coliff
  • Update alias.go 06bd0136 @coliff
  • Remove test debug fb3cb05c @bep
  • Update dependencies d07882df @bep
  • Update Chroma 7f535671 @bep #5025
  • Remove alias of os.Stat 71931b30 @satotake
  • Renmae FileStat Stat d40116e5 @satotake
  • Reduce allocation in the benchmark itself a6b1eb1e @bep
  • Simplify the 0 transformer case 27110133 @bep

Fixes

Templates

  • Fix compiling Amber templates that import other templates 37438757 @Stebalien
  • Reimplement the ".Params tolower" template transformer 5c538491 @bep #5068

Output

  • Fix Resource output in multihost setups 78f8475a @bep #5058

Core

  • Force render of any changed page, even in Fast Render Mode 22475460 @bep #5083
  • Add configFile(s) back to the watch list after REMOVE event abc54080 @anthonyfok #4701
  • Gracefully handle typos in server config when running the server a655e00d @bep #5081
  • Fix shortcode output wrapped in p 78c99463 @gllera #1642
  • Adjust tests for shortcode p-issue baa62d0a @bep #1642
  • Fix image cache-clearing for sub-languages 9d973004 @bep #5084
  • Fix error when deleting a bundle in server mode 0a88741f @bep #5077
  • Fix Related when called from shortcode 0dd06bda @bep #5071
  • Use the interface value when doing Related search a6f199f7 @bep #5071
  • Fix GitInfo when multiple content dirs 2182ecfd @bep #5054
  • Add multiple content dirs to GitInfo test site e85833d8 @bep #5054
  • Fix "adding a bundle" in server mode d139a037 @bep #5075
  • Fix typo c362634b @satotake

This package has no dependencies.

Discussion for the hugo Package

Ground Rules:

  • This discussion is only about hugo and the hugo package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or hugo, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus