Skip to content

Commit 6871b6b

Browse files
authored
Upgrade to Docsy 0.14.1, page tweaks (#419)
1 parent 6b3885f commit 6871b6b

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This project follows
3434
Update Docsy to the latest tagged release:
3535

3636
```bash
37-
npm run update:hugo-modules
37+
npm run update:docsy:mod
3838
```
3939

4040
Or update to the latest commit on the main branch:

content/en/site.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,11 @@ params:
99
cSpell:ignore: docsy
1010
---
1111

12+
Site built with [<span class="badge bg-primary text-bg-primary fs-6">Docsy
13+
v{{% param version %}} </span>][version]
14+
15+
## Build information
16+
1217
{{% td/site-build-info/netlify team="docsy-example" %}}
18+
19+
[version]: <https://github.com/google/docsy/releases/v{{% param version %}}>

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module github.com/google/docsy-example
22

33
go 1.12
44

5-
require github.com/google/docsy v0.14.0
5+
require github.com/google/docsy v0.14.1
66

77
// cSpell:ignore github docsy

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3 h1:/iluJkJiyTAdnqrw3Yi9rH2HNHhrrtCmj8VJe7I6o3w=
22
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
3-
github.com/google/docsy v0.14.0 h1:ughzXITuVzEwA7m5A6JLyXQRSZdyRtIUvukfJ+VrUAY=
4-
github.com/google/docsy v0.14.0/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU=
3+
github.com/google/docsy v0.14.1 h1:7TCLfklsLlPlYFly+nsBol6uYIrC8lzJpbXEAwZ8BSs=
4+
github.com/google/docsy v0.14.1/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU=
55
github.com/twbs/bootstrap v5.3.8+incompatible h1:eK1fsXP7R/FWFt+sSNmmvUH9usPocf240nWVw7Dh02o=
66
github.com/twbs/bootstrap v5.3.8+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=

hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ params:
129129
# The version number for the version of the docs represented in this doc set.
130130
# Used in the "version-banner" partial to display a version number for the
131131
# current doc set.
132-
version: 0.0
132+
version: 0.14.1
133133

134134
# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
135135
github_repo: https://github.com/google/docsy-example

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docsy-example-site",
3-
"version": "0.13.0",
4-
"version.next": "0.13.1-dev-unreleased",
3+
"version": "0.14.1",
4+
"version.next": "0.14.2-dev-unreleased",
55
"description": "Example site that uses Docsy theme for technical documentation.",
66
"repository": "github:google/docsy-example",
77
"homepage": "https://example.docsy.dev",
@@ -44,11 +44,12 @@
4444
"test-and-fix": "npm run fix && npm run test-only",
4545
"test-only": "npm run check:links",
4646
"test": "npm run test-and-fix",
47-
"update:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
4847
"update:docsy:main": "hugo mod get -u github.com/google/docsy@main && hugo mod tidy",
49-
"update:hugo-modules": "hugo mod get -u github.com/google/docsy && hugo mod tidy",
48+
"update:docsy:mod": "hugo mod get -u github.com/google/docsy && hugo mod tidy",
5049
"update:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
51-
"update:packages": "npx npm-check-updates -u"
50+
"update:main": "npm run update:packages && npm run update:docsy:main",
51+
"update:packages": "npx npm-check-updates -u",
52+
"update": "npm run update:packages && npm run update:docsy:mod"
5253
},
5354
"devDependencies": {
5455
"autoprefixer": "^10.4.24",

0 commit comments

Comments
 (0)