Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This project follows
Update Docsy to the latest tagged release:

```bash
npm run update:hugo-modules
npm run update:docsy:mod
```

Or update to the latest commit on the main branch:
Expand Down
7 changes: 7 additions & 0 deletions content/en/site.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,11 @@ params:
cSpell:ignore: docsy
---

Site built with [<span class="badge bg-primary text-bg-primary fs-6">Docsy
v{{% param version %}} </span>][version]

## Build information

{{% td/site-build-info/netlify team="docsy-example" %}}

[version]: <https://github.com/google/docsy/releases/v{{% param version %}}>
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module github.com/google/docsy-example

go 1.12

require github.com/google/docsy v0.14.0
require github.com/google/docsy v0.14.1

// cSpell:ignore github docsy
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3 h1:/iluJkJiyTAdnqrw3Yi9rH2HNHhrrtCmj8VJe7I6o3w=
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.14.0 h1:ughzXITuVzEwA7m5A6JLyXQRSZdyRtIUvukfJ+VrUAY=
github.com/google/docsy v0.14.0/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU=
github.com/google/docsy v0.14.1 h1:7TCLfklsLlPlYFly+nsBol6uYIrC8lzJpbXEAwZ8BSs=
github.com/google/docsy v0.14.1/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU=
github.com/twbs/bootstrap v5.3.8+incompatible h1:eK1fsXP7R/FWFt+sSNmmvUH9usPocf240nWVw7Dh02o=
github.com/twbs/bootstrap v5.3.8+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
2 changes: 1 addition & 1 deletion hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ params:
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
version: 0.0
version: 0.14.1

# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
github_repo: https://github.com/google/docsy-example
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docsy-example-site",
"version": "0.13.0",
"version.next": "0.13.1-dev-unreleased",
"version": "0.14.1",
"version.next": "0.14.2-dev-unreleased",
"description": "Example site that uses Docsy theme for technical documentation.",
"repository": "github:google/docsy-example",
"homepage": "https://example.docsy.dev",
Expand Down Expand Up @@ -44,11 +44,12 @@
"test-and-fix": "npm run fix && npm run test-only",
"test-only": "npm run check:links",
"test": "npm run test-and-fix",
"update:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
"update:docsy:main": "hugo mod get -u github.com/google/docsy@main && hugo mod tidy",
"update:hugo-modules": "hugo mod get -u github.com/google/docsy && hugo mod tidy",
"update:docsy:mod": "hugo mod get -u github.com/google/docsy && hugo mod tidy",
"update:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:packages": "npx npm-check-updates -u"
"update:main": "npm run update:packages && npm run update:docsy:main",
"update:packages": "npx npm-check-updates -u",
"update": "npm run update:packages && npm run update:docsy:mod"
},
"devDependencies": {
"autoprefixer": "^10.4.24",
Expand Down