Skip to content

Releases: razonyang/hugo-theme-bootstrap

v1.1.0

16 Jun 02:10
Compare
Choose a tag to compare

1.1.0 (2023-06-16)

Features

  • funding: add support for Buy Me a Coffee (decf0fe)

v1.0.2

23 May 09:31
Compare
Choose a tag to compare

Bug fixes release for Hugo v0.112.0

  • For >= Hugo v0.112.0, you'll need to upgrade your theme to this version.
  • For < Hugo v0.112.0, you may need to append the PWD into security.funcs.getenv after upgrading the theme.
# config.toml
[security.funcs]
  getenv = ['^HUGO_', '^CI$', 'PWD']

What's Changed

Full Changelog: v1.0.1...v1.0.2

v1.0.0

22 Apr 01:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0-beta5.4...v1.0.0

v1.0.0-beta5.4

06 Apr 13:28
Compare
Choose a tag to compare

What's Changed

  • style: make the dropdown menu width fit the content by @razonyang in #918
  • style: change the search shortcut style by @razonyang in #919
  • fix(toggle): escape name and item name, and correct the order of items by @razonyang in #920
  • fix: replace fixed position with sticky for header by @razonyang in #921
  • feat: add the body-begin hook by @razonyang in #922

Full Changelog: v1.0.0-beta5.1...v1.0.0-beta5.4

v1.0.0-beta5.1

27 Mar 11:12
Compare
Choose a tag to compare

Fix build for Bootstrap v5.3.0-alpha2.

What's Changed

Full Changelog: v1.0.0-beta5...v1.0.0-beta5.1

v1.0.0-beta5

25 Feb 03:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0-beta4...v1.0.0-beta5

v1.0.0-beta4

29 Jan 12:34
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0-beta3...v1.0.0-beta4

v1.0.0-beta3

29 Jan 07:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0-beta2...v1.0.0-beta3

v1.0.0-beta2

20 Jan 09:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0-beta1...v1.0.0-beta2

v1.0.0-beta1

25 Dec 02:15
Compare
Choose a tag to compare

Upgrade NOTE

You'll need to execute the hugo mod npm pack and npm update commands to update the dependencies after upgrading the theme.

The below steps for Hugo Module installation method, See https://hbs.razonyang.com/v1/en/docs/getting-started/upgradation/ if you're using Git Module.

$ hugo mod get github.com/razonyang/hugo-theme-bootstrap 
hugo: downloading modules …
hugo: collected modules in 8021 ms
go: downloading github.com/razonyang/hugo-theme-bootstrap v1.0.0-beta1
go: upgraded github.com/razonyang/hugo-theme-bootstrap v1.0.0-alpha.15.0.20221205042156-ad3b22d99f95 => v1.0.0-beta1

$ hugo mod npm pack

$ cat package.json | grep '"bootstrap"'
"bootstrap": "^5.3.0-alpha1",

$ npm update

$ git add go.mod go.sum package.json package-lock.json

$ git commit -m 'Bump theme to v1.0.0-beta1'
  • You can also specify the version at the end of the repo if the command not working: hugo mod get github.com/razonyang/hugo-theme-bootstrap@v1.0.0-beta1.
  • cat package.json | grep '"bootstrap"' to check whether the Bootstrap version is correct, it should be ^5.3.0-alpha1.

What's Changed

Full Changelog: v1.0.0-alpha.15...v1.0.0-beta1