Hugo v0.101.0 Released

13 Likes

Hugo 0.101.0 packages

Brew - Hugo Brew package for macOS and Linux - updated :white_check_mark:
Snap Package - Hugo Snap (Snapcraft) package for Linux

  • traditional release - updated :white_check_mark:
  • extended release - updated :white_check_mark:

Docker/CI Image - Hugo Docker image for Continuous Integration - updated :white_check_mark:
Docker Image - klakegg/hugo - Other Hugo Docker image - updated :white_check_mark:
Debian (sid) - updated :white_check_mark: (Track link)
Ubuntu (kinetic) - updated :white_check_mark: (Track link )
Fedora Copr - Hugo RPM package for Fedora and CentOS - not yet updated :x:
Chocolatey Package - Hugo Chocolatey package for Windows

7 Likes

The hl_inline option is especially cool after one goes into the appropriate CSS/SCSS for Chroma and adds .code-inline styling to each line of what’s already there for .chroma (easy in VS Code or similar editors). For example:

/* Prior to Hugo 0.101.0 */
/* Background */ .chroma { color: #d0d0d0; background-color: #202020 }
/* Name */ .chroma .n { color: #ff9970 }
/* ... etc. */
/* For `hl-inline` option in Hugo 0.101.0 */
/* Background */ .chroma, .code-inline { color: #d0d0d0; background-color: #202020 }
/* Name */ .chroma .n, .code-inline .n { color: #ff9970 }
/* ... etc. */
1 Like

Hmm… Maybe the Chroma class should be added by default, I didn’t think about this … I will create an issue to remind myself.

2 Likes

In my case, I’d have needed to do this anyway because I tweak the auto-generated Chroma CSS for accessibility. Some of the default Chroma stylesheets’ colors don’t pass the WebAIM contrast checker test. But, otherwise, yes, good point.

1 Like

Brew - Hugo Brew package for macOS updated :white_check_mark: :

5 Likes

Docker image - klakegg/hugo - Updated :white_check_mark:

3 Likes

What does “GIF animation image processing” mean? Any examples? The link does not give any hints and no examples.

It means you can process (resize, rotate etc.) these images and preserve the animation:

2 Likes

Hi,

The Snap Package has been updated to v0.101.0+git2.9f74196c as of 2022-06-28 (sorry for the extra “+git” version because a bug fix was needed for it to be accepted to the Snap Store), see Install hugo on Linux | Snap Store. Sorry for the 3 months that the Hugo Snap was not updated. It was due to my mishandling and slow follow up to snap denials /etc/gitconfig · Issue #6226 · gohugoio/hugo · GitHub.

The Debian package of v0.101.0 is pending the acceptance of golang-github-alecthomas-chroma-v2-dev package into Debian hugo - Debian Package Tracker. The Debian FTP Masters have actually reviewed the new chroma/v2 package last week but had to reject the package due to my omission of licensing information on some newly added files (since chroma 0.10.0), so the package needed to be fixed and re-uploaded, and is currently pending a second review hopefully some time this week.

Cheers!

2 Likes