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:

252,709

Downloads of v 0.147.9:

5

Last Update:

23 Jun 2025

Package Maintainer(s):

Software Author(s):

  • Hugo Authors

Tags:

Hugo Extended

  • 1
  • 2
  • 3

0.147.9 | Updated: 23 Jun 2025

Downloads:

252,709

Downloads of v 0.147.9:

5

Maintainer(s):

Software Author(s):

  • Hugo Authors

Hugo Extended 0.147.9

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Hugo Authors. The inclusion of Hugo Authors trademark(s), if any, upon this webpage is solely to identify Hugo Authors goods or services and not for commercial purposes.

  • 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 as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

To uninstall Hugo Extended, 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-extended -y --source="'INTERNAL REPO URL'" [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-extended -y --source="'INTERNAL REPO URL'" 
$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-extended
  win_chocolatey:
    name: hugo-extended
    version: '0.147.9'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'hugo-extended' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.147.9'
end

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


cChocoPackageInstaller hugo-extended
{
    Name     = "hugo-extended"
    Version  = "0.147.9"
    Source   = "INTERNAL REPO URL"
}

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


package { 'hugo-extended':
  ensure   => '0.147.9',
  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.

Package Approved

This package was approved as a trusted package on 23 Jun 2025.

Description

Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, ease of 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 metadata, 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.

NOTE:: This package does not include the deploy feature. If you need this, see the hugo-extended-withdeploy package.

NOTE:: This extended version allows native Sass compilation.

NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$zipFile  = 'hugo_extended_0.147.9_windows-amd64.zip'
$filePath = Join-Path -Path $toolsDir -ChildPath $zipFile

$packageArgs = @{
    packageName    = $env:ChocolateyPackageName
    fileFullPath64 = $filePath
    destination    = $toolsDir
}

Get-ChocolateyUnzip @packageArgs
tools\hugo_extended_0.147.9_windows-amd64.zip
md5: A00643164BF93F8C0796A7C74A3C4082 | sha1: 0B6F1B63B3095FD7C5F5CC1956AA742C6C34EC66 | sha256: 48021619F3E857BDEE30FDC5EA3CE139FD6DA1DDB0C70E5EFB371A556B171F2A | sha512: CB164B9764DB340910146F7B974D3386F48A189566905D103D759F8ECA2DA2EA4FC45E5B978A89E23C46E4BDF73D70487224BAA6492F3874E218D1B2731B6222
tools\LICENSE.txt
From: https://github.com/gohugoio/hugo/blob/master/LICENSE

                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright 2022 The Hugo Authors.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
tools\VERIFICATION.txt
To verify the embedded files:

1. Please go to the project source location and download the release matching the package version.
2. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the official release file (from step 1 above) and the file from the package and compare them.

x64 URL: https://github.com/gohugoio/hugo/releases/download/v0.147.9/hugo_extended_0.147.9_windows-amd64.zip
x64 Checksum Type: SHA256
x64 Checksum: 48021619F3E857BDEE30FDC5EA3CE139FD6DA1DDB0C70E5EFB371A556B171F2A

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 Extended 0.147.8 1144 Saturday, June 7, 2025 Approved
Hugo Extended 0.147.7 667 Saturday, May 31, 2025 Approved
Hugo Extended 0.147.6 470 Tuesday, May 27, 2025 Approved
Hugo Extended 0.147.5 559 Thursday, May 22, 2025 Approved
Hugo Extended 0.147.4 296 Tuesday, May 20, 2025 Approved
Hugo Extended 0.147.3 812 Monday, May 12, 2025 Approved
Hugo Extended 0.147.2 578 Tuesday, May 6, 2025 Approved
Hugo Extended 0.147.1 562 Thursday, May 1, 2025 Approved
Hugo Extended 0.147.0 653 Friday, April 25, 2025 Approved
Hugo Extended 0.146.7 409 Tuesday, April 22, 2025 Approved
Hugo Extended 0.146.5 602 Wednesday, April 16, 2025 Approved
Hugo Extended 0.146.4 343 Monday, April 14, 2025 Approved
Hugo Extended 0.146.3 261 Saturday, April 12, 2025 Approved
Hugo Extended 0.146.2 188 Friday, April 11, 2025 Approved
Hugo Extended 0.146.1 183 Thursday, April 10, 2025 Approved
Hugo Extended 0.145.0 3049 Wednesday, February 26, 2025 Approved
Hugo Extended 0.144.2 774 Wednesday, February 19, 2025 Approved
Hugo Extended 0.144.1 198 Tuesday, February 18, 2025 Approved
Hugo Extended 0.144.0 204 Monday, February 17, 2025 Approved
Hugo Extended 0.143.1 1311 Tuesday, February 4, 2025 Approved
Hugo Extended 0.143.0 412 Saturday, February 1, 2025 Approved
Hugo Extended 0.142.0 943 Wednesday, January 22, 2025 Approved
Hugo Extended 0.141.0 721 Thursday, January 16, 2025 Approved
Hugo Extended 0.140.2 1435 Monday, December 30, 2024 Approved
Hugo Extended 0.140.1 576 Monday, December 23, 2024 Approved
Hugo Extended 0.140.0 615 Tuesday, December 17, 2024 Approved
Hugo Extended 0.139.4 874 Monday, December 9, 2024 Approved
Hugo Extended 0.139.3 970 Friday, November 29, 2024 Approved
Hugo Extended 0.139.2 659 Saturday, November 23, 2024 Approved
Hugo Extended 0.139.0 542 Monday, November 18, 2024 Approved
Hugo Extended 0.138.0 1133 Wednesday, November 6, 2024 Approved
Hugo Extended 0.137.1 249 Tuesday, November 5, 2024 Approved
Hugo Extended 0.137.0 121 Monday, November 4, 2024 Approved
Hugo Extended 0.136.5 1028 Thursday, October 24, 2024 Approved
Hugo Extended 0.136.4 400 Tuesday, October 22, 2024 Approved
Hugo Extended 0.136.3 213 Monday, October 21, 2024 Approved
Hugo Extended 0.136.2 514 Thursday, October 17, 2024 Approved
Hugo Extended 0.136.1 225 Wednesday, October 16, 2024 Approved
Hugo Extended 0.136.0 156 Tuesday, October 15, 2024 Approved
Hugo Extended 0.135.0 1682 Friday, September 27, 2024 Approved
Hugo Extended 0.134.3 879 Thursday, September 19, 2024 Approved
Hugo Extended 0.134.2 947 Tuesday, September 10, 2024 Approved
Hugo Extended 0.134.1 482 Thursday, September 5, 2024 Approved
Hugo Extended 0.134.0 518 Tuesday, September 3, 2024 Approved
Hugo Extended 0.133.1 823 Monday, August 26, 2024 Approved
Hugo Extended 0.133.0 972 Sunday, August 18, 2024 Approved
Hugo Extended 0.132.2 432 Wednesday, August 14, 2024 Approved
Hugo Extended 0.132.1 198 Tuesday, August 13, 2024 Approved
Hugo Extended 0.132.0 92 Monday, August 12, 2024 Approved
Hugo Extended 0.131.0 1005 Friday, August 2, 2024 Approved
Hugo Extended 0.130.0 483 Monday, July 29, 2024 Approved
Hugo Extended 0.129.0 1098 Wednesday, July 17, 2024 Approved
Hugo Extended 0.128.2 1197 Thursday, July 4, 2024 Approved
Hugo Extended 0.128.1 337 Tuesday, July 2, 2024 Approved
Hugo Extended 0.128.0 783 Tuesday, June 25, 2024 Approved
Hugo Extended 0.127.0 1747 Wednesday, June 5, 2024 Approved
Hugo Extended 0.126.3 495 Sunday, June 2, 2024 Approved
Hugo Extended 0.126.2 440 Thursday, May 30, 2024 Approved
Hugo Extended 0.126.1 1021 Tuesday, May 21, 2024 Approved
Hugo Extended 0.125.7 1236 Wednesday, May 8, 2024 Approved
Hugo Extended 0.125.6 592 Sunday, May 5, 2024 Approved
Hugo Extended 0.125.5 532 Wednesday, May 1, 2024 Approved
Hugo Extended 0.125.4 2518 Thursday, April 25, 2024 Approved
Hugo Extended 0.125.3 514 Monday, April 22, 2024 Approved
Hugo Extended 0.125.2 402 Saturday, April 20, 2024 Approved
Hugo Extended 0.125.1 403 Thursday, April 18, 2024 Approved
Hugo Extended 0.125.0 393 Tuesday, April 16, 2024 Approved
Hugo Extended 0.124.1 2289 Wednesday, March 20, 2024 Approved
Hugo Extended 0.124.0 660 Saturday, March 16, 2024 Approved
Hugo Extended 0.123.8 1013 Thursday, March 7, 2024 Approved
Hugo Extended 0.123.7 797 Friday, March 1, 2024 Approved
Hugo Extended 0.123.6 351 Thursday, February 29, 2024 Approved
Hugo Extended 0.123.5 133 Wednesday, February 28, 2024 Approved
Hugo Extended 0.123.4 389 Monday, February 26, 2024 Approved
Hugo Extended 0.123.3 489 Friday, February 23, 2024 Approved
Hugo Extended 0.123.2 256 Thursday, February 22, 2024 Approved
Hugo Extended 0.123.1 305 Wednesday, February 21, 2024 Approved
Hugo Extended 0.123.0 411 Monday, February 19, 2024 Approved
Hugo Extended 0.122.0 2048 Friday, January 26, 2024 Approved
Hugo Extended 0.121.2 1883 Friday, January 5, 2024 Approved
Hugo Extended 0.121.1 2163 Friday, December 8, 2023 Approved
Hugo Extended 0.121.0 510 Tuesday, December 5, 2023 Approved
Hugo Extended 0.120.4 2343 Wednesday, November 8, 2023 Approved
Hugo Extended 0.120.3 894 Thursday, November 2, 2023 Approved
Hugo Extended 0.120.2 283 Tuesday, October 31, 2023 Approved
Hugo Extended 0.120.1 298 Monday, October 30, 2023 Approved
Hugo Extended 0.119.0 3301 Sunday, September 24, 2023 Approved
Hugo Extended 0.118.2 2950 Thursday, August 31, 2023 Approved
Hugo Extended 0.117.0 2767 Monday, August 7, 2023 Approved
Hugo Extended 0.116.1 986 Tuesday, August 1, 2023 Approved
Hugo Extended 0.116.0 343 Monday, July 31, 2023 Approved
Hugo Extended 0.115.4 1435 Thursday, July 20, 2023 Approved
Hugo Extended 0.115.3 982 Thursday, July 13, 2023 Approved
Hugo Extended 0.115.2 813 Saturday, July 8, 2023 Approved
Hugo Extended 0.115.1 671 Tuesday, July 4, 2023 Approved
Hugo Extended 0.115.0 589 Thursday, June 29, 2023 Approved
Hugo Extended 0.114.1 1048 Friday, June 23, 2023 Approved
Hugo Extended 0.114.0 534 Monday, June 19, 2023 Approved
Hugo Extended 0.113.0 1540 Monday, June 5, 2023 Approved
Hugo Extended 0.112.7 161 Monday, June 5, 2023 Approved
Hugo Extended 0.112.5 973 Monday, May 29, 2023 Approved
Hugo Extended 0.112.4 227 Sunday, May 28, 2023 Approved
Hugo Extended 0.112.3 617 Wednesday, May 24, 2023 Approved
Hugo Extended 0.112.2 97 Wednesday, May 24, 2023 Approved
Hugo Extended 0.112.1 271 Tuesday, May 23, 2023 Approved
Hugo Extended 0.111.3 6403 Sunday, March 12, 2023 Approved
Hugo Extended 0.111.2 1148 Sunday, March 5, 2023 Approved
Hugo Extended 0.111.1 582 Thursday, March 2, 2023 Approved
Hugo Extended 0.111.0 223 Thursday, March 2, 2023 Approved
Hugo Extended 0.110.0 4599 Wednesday, January 18, 2023 Approved
Hugo Extended 0.109.0 4882 Friday, December 23, 2022 Approved
Hugo Extended 0.108.0 1733 Tuesday, December 6, 2022 Approved
Hugo Extended 0.107.0 1389 Thursday, November 24, 2022 Approved
Hugo Extended 0.106.0 856 Thursday, November 17, 2022 Approved
Hugo Extended 0.105.0 1897 Friday, October 28, 2022 Approved
Hugo Extended 0.104.3 2135 Tuesday, October 4, 2022 Approved
Hugo Extended 0.104.2 670 Thursday, September 29, 2022 Approved
Hugo Extended 0.104.1 447 Monday, September 26, 2022 Approved
Hugo Extended 0.104.0 483 Friday, September 23, 2022 Approved
Hugo Extended 0.103.1 355 Wednesday, September 21, 2022 Approved
Hugo Extended 0.102.3 1673 Thursday, September 1, 2022 Approved
Hugo Extended 0.102.2 265 Wednesday, August 31, 2022 Approved
Hugo Extended 0.102.1 341 Monday, August 29, 2022 Approved
Hugo Extended 0.102.0 275 Sunday, August 28, 2022 Approved
Hugo Extended 0.101.0 4472 Thursday, June 16, 2022 Approved
Hugo Extended 0.100.2 710 Wednesday, June 8, 2022 Approved
Hugo Extended 0.100.1 645 Wednesday, June 1, 2022 Approved
Hugo Extended 0.100.0 302 Tuesday, May 31, 2022 Approved
Hugo Extended 0.99.1 883 Wednesday, May 18, 2022 Approved
Hugo Extended 0.99.0 412 Monday, May 16, 2022 Approved
Hugo Extended 0.98.0 1211 Thursday, April 28, 2022 Approved
Hugo Extended 0.97.3 95 Tuesday, April 19, 2022 Approved
Hugo Extended 0.97.2 1017 Sunday, April 17, 2022 Approved
Hugo Extended 0.97.1 177 Saturday, April 16, 2022 Approved
Hugo Extended 0.97.0 390 Thursday, April 14, 2022 Approved
Hugo Extended 0.96.0 1841 Saturday, March 26, 2022 Approved
Hugo Extended 0.95.0 1131 Wednesday, March 16, 2022 Approved
Hugo Extended 0.94.2 16645 Saturday, March 12, 2022 Approved
Hugo Extended 0.94.1 222 Friday, March 11, 2022 Approved
Hugo Extended 0.94.0 261 Thursday, March 10, 2022 Approved
Hugo Extended 0.93.3 458 Tuesday, March 8, 2022 Approved
Hugo Extended 0.93.2 627 Friday, March 4, 2022 Approved
Hugo Extended 0.93.1 426 Wednesday, March 2, 2022 Approved
Hugo Extended 0.93.0 480 Monday, February 28, 2022 Approved
Hugo Extended 0.92.2 1561 Friday, February 11, 2022 Approved
Hugo Extended 0.92.1 1395 Friday, January 28, 2022 Approved
Hugo Extended 0.92.0 1644 Wednesday, January 12, 2022 Approved
Hugo Extended 0.91.2 1451 Thursday, December 23, 2021 Approved
Hugo Extended 0.91.1 221 Wednesday, December 22, 2021 Approved
Hugo Extended 0.91.0 644 Friday, December 17, 2021 Approved
Hugo Extended 0.90.1 836 Friday, December 10, 2021 Approved
Hugo Extended 0.90.0 446 Wednesday, December 8, 2021 Approved
Hugo Extended 0.89.4 1799 Wednesday, November 17, 2021 Approved
Hugo Extended 0.89.3 349 Monday, November 15, 2021 Approved
Hugo Extended 0.89.2 748 Monday, November 8, 2021 Approved
Hugo Extended 0.89.1 517 Friday, November 5, 2021 Approved
Hugo Extended 0.89.0 478 Tuesday, November 2, 2021 Approved
Hugo Extended 0.88.1 3842 Saturday, September 4, 2021 Approved
Hugo Extended 0.88.0 358 Thursday, September 2, 2021 Approved
Hugo Extended 0.87.0 2477 Tuesday, August 3, 2021 Approved
Hugo Extended 0.86.1 559 Friday, July 30, 2021 Approved
Hugo Extended 0.86.0 1046 Wednesday, July 21, 2021 Approved
Hugo Extended 0.85.0 1538 Monday, July 5, 2021 Approved
Hugo Extended 0.84.4 493 Thursday, July 1, 2021 Approved
Hugo Extended 0.84.3 455 Tuesday, June 29, 2021 Approved
Hugo Extended 0.84.2 308 Monday, June 28, 2021 Approved
Hugo Extended 0.84.1 506 Thursday, June 24, 2021 Approved
Hugo Extended 0.84.0 549 Friday, June 18, 2021 Approved
Hugo Extended 0.83.1 2982 Sunday, May 2, 2021 Approved
Hugo Extended 0.83.0 234 Saturday, May 1, 2021 Approved
Hugo Extended 0.82.0 2122 Sunday, March 21, 2021 Approved
Hugo Extended 0.81.0 1513 Friday, February 19, 2021 Approved
Hugo Extended 0.80.0 2616 Thursday, December 31, 2020 Approved
Hugo Extended 0.79.1 791 Saturday, December 19, 2020 Approved
Hugo Extended 0.79.0 1236 Friday, November 27, 2020 Approved
Hugo Extended 0.78.2 787 Friday, November 13, 2020 Approved
Hugo Extended 0.78.1 829 Thursday, November 5, 2020 Approved
Hugo Extended 0.78.0 284 Tuesday, November 3, 2020 Approved
Hugo Extended 0.77.0 462 Friday, October 30, 2020 Approved
Hugo Extended 0.76.5 2593 Wednesday, October 14, 2020 Approved
Hugo Extended 0.76.4 399 Monday, October 12, 2020 Approved
Hugo Extended 0.76.3 489 Thursday, October 8, 2020 Approved
Hugo Extended 0.76.2 273 Wednesday, October 7, 2020 Approved
Hugo Extended 0.76.0 209 Tuesday, October 6, 2020 Approved
Hugo Extended 0.75.1 1100 Tuesday, September 15, 2020 Approved
Hugo Extended 0.75.0 260 Monday, September 14, 2020 Approved
Hugo Extended 0.74.3 2096 Thursday, July 23, 2020 Approved
Hugo Extended 0.74.2 525 Friday, July 17, 2020 Approved
Hugo Extended 0.74.1 405 Tuesday, July 14, 2020 Approved
Hugo Extended 0.74.0 253 Monday, July 13, 2020 Approved
Hugo Extended 0.73.0 1090 Tuesday, June 23, 2020 Approved
Hugo Extended 0.72.0 1156 Sunday, May 31, 2020 Approved
Hugo Extended 0.71.1 507 Monday, May 25, 2020 Approved
Hugo Extended 0.71.0 560 Monday, May 18, 2020 Approved
Hugo Extended 0.70.0 940 Wednesday, May 6, 2020 Approved
Hugo Extended 0.69.2 803 Friday, April 24, 2020 Approved
Hugo Extended 0.69.1 344 Wednesday, April 22, 2020 Approved
Hugo Extended 0.69.0 17734 Friday, April 10, 2020 Approved
Hugo Extended 0.68.3 1152 Tuesday, March 24, 2020 Approved
Hugo Extended 0.68.2 229 Tuesday, March 24, 2020 Approved
Hugo Extended 0.68.1 361 Sunday, March 22, 2020 Approved
Hugo Extended 0.68.0 273 Saturday, March 21, 2020 Approved
Hugo Extended 0.67.1 520 Monday, March 16, 2020 Approved
Hugo Extended 0.67.0 514 Tuesday, March 10, 2020 Approved
Hugo Extended 0.66.0 519 Tuesday, March 3, 2020 Approved
Hugo Extended 0.65.3 662 Sunday, February 23, 2020 Approved
Hugo Extended 0.65.2 270 Friday, February 21, 2020 Approved
Hugo Extended 0.65.1 251 Thursday, February 20, 2020 Approved
Hugo Extended 0.65.0 191 Thursday, February 20, 2020 Approved
Hugo Extended 0.64.1 666 Monday, February 10, 2020 Approved
Hugo Extended 0.64.0 225 Tuesday, February 4, 2020 Approved
Hugo Extended 0.63.2 743 Monday, January 27, 2020 Approved
Hugo Extended 0.63.1 329 Friday, January 24, 2020 Approved
Hugo Extended 0.63.0 246 Thursday, January 23, 2020 Approved
Hugo Extended 0.62.2 855 Monday, January 6, 2020 Approved
Hugo Extended 0.62.1 189 Wednesday, January 1, 2020 Approved
Hugo Extended 0.62.0 609 Monday, December 23, 2019 Approved
Hugo Extended 0.61.0 590 Wednesday, December 11, 2019 Approved
Hugo Extended 0.60.1 554 Friday, November 29, 2019 Approved
Hugo Extended 0.60.0 284 Wednesday, November 27, 2019 Approved
Hugo Extended 0.59.1 945 Thursday, October 31, 2019 Approved
Hugo Extended 0.59.0 500 Monday, October 21, 2019 Approved
Hugo Extended 0.58.3 661 Thursday, September 19, 2019 Approved
Hugo Extended 0.58.2 363 Friday, September 13, 2019 Approved
Hugo Extended 0.58.1 335 Friday, September 6, 2019 Approved
Hugo Extended 0.58.0 270 Wednesday, September 4, 2019 Approved
Hugo Extended 0.57.2 2444 Saturday, August 17, 2019 Approved
Hugo Extended 0.57.1 254 Friday, August 16, 2019 Approved
Hugo Extended 0.57.0 326 Wednesday, August 14, 2019 Approved
Hugo Extended 0.56.3 9588 Wednesday, July 31, 2019 Approved
Hugo Extended 0.56.2 261 Tuesday, July 30, 2019 Approved
Hugo Extended 0.56.1 363 Sunday, July 28, 2019 Approved
Hugo Extended 0.56.0 290 Thursday, July 25, 2019 Approved
Hugo Extended 0.55.6 2310 Saturday, May 18, 2019 Approved
Hugo Extended 0.55.5 571 Friday, May 3, 2019 Approved
Hugo Extended 0.55.4 436 Thursday, April 25, 2019 Approved
Hugo Extended 0.55.3 330 Saturday, April 20, 2019 Approved
Hugo Extended 0.55.2 266 Wednesday, April 17, 2019 Approved
Hugo Extended 0.55.1 360 Friday, April 12, 2019 Approved
Hugo Extended 0.55.0 307 Monday, April 8, 2019 Approved
Hugo Extended 0.54.0 925 Friday, February 1, 2019 Approved
Hugo Extended 0.53 537 Monday, December 24, 2018 Approved
Hugo Extended 0.52 371 Wednesday, November 28, 2018 Approved
Hugo Extended 0.51 333 Wednesday, November 7, 2018 Approved
Hugo Extended 0.50 307 Monday, October 29, 2018 Approved
Hugo Extended 0.49.2 310 Friday, October 12, 2018 Approved
Hugo Extended 0.49.1 249 Wednesday, October 10, 2018 Approved
Hugo Extended 0.49 297 Tuesday, September 25, 2018 Approved
Hugo Extended 0.48 245 Saturday, September 22, 2018 Approved

Improvements and fixes

  • Remove WARN with false negatives 6a4a3ab8f @bep #13806
  • resources/page: Make sure a map is always initialized 36f6f987a @bep #13810
  • tpl/tplimpl: Copy embedded HTML table render hook to each output format 18a9ca7d7 @jmooring #13351
  • tpl/tplimpl: Change resources.GetRemote errors to suppressible warnings b6c8dfa9d @jmooring #13803
  • common/terminal: Enable color output on windows 4217fee4b @jmooring #8209
  • hugolib: Remove test for deprecated future 4ef572014 @bep

Dependency Updates

  • build(deps): bump google.golang.org/api from 0.221.0 to 0.237.0 621ea42f3 @dependabot[bot]
  • build(deps): bump github.com/aws/aws-sdk-go-v2 from 1.36.1 to 1.36.4 34e83789f @dependabot[bot]
  • build(deps): bump golang.org/x/image from 0.27.0 to 0.28.0 4d3ebe4d2 @dependabot[bot]
  • deps: Upgrade github.com/spf13/cast v1.8.0 => v1.9.2 b5c0383bd @jmooring

This package has no dependencies.

Discussion for the Hugo Extended Package

Ground Rules:

  • This discussion is only about Hugo Extended and the Hugo Extended 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 Extended, 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