Skip to content

Commit b7a6c1b

Browse files
Version Packages (#100)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a4e4e89 commit b7a6c1b

6 files changed

Lines changed: 41 additions & 37 deletions

File tree

.changeset/public-ties-thank.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/shiny-pans-help.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/site/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# doctocat-nextjs-site
22

3+
## 0.0.14
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1b72c82`](https://github.com/primer/doctocat-nextjs/commit/1b72c8203115a0e1c7bb511b7abe257cc33ab558), [`a4e4e89`](https://github.com/primer/doctocat-nextjs/commit/a4e4e89d6935250ab6f8ac84d0d2dc8e9f3b5654)]:
8+
- @primer/doctocat-nextjs@0.10.0
9+
310
## 0.0.13
411

512
### Patch Changes

packages/site/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "doctocat-nextjs-site",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"private": true,
55
"description": "Documentation theme",
66
"type": "module",
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/primer/doctocat-nextjs#readme",
2424
"dependencies": {
25-
"@primer/doctocat-nextjs": "^0.9.0",
25+
"@primer/doctocat-nextjs": "^0.10.0",
2626
"@primer/octicons-react": "19.23.1",
2727
"eslint-config-next": "16.2.2",
2828
"next": "16.2.2",

packages/theme/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# @primer/doctocat-nextjs
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#99](https://github.com/primer/doctocat-nextjs/pull/99) [`1b72c82`](https://github.com/primer/doctocat-nextjs/commit/1b72c8203115a0e1c7bb511b7abe257cc33ab558) Thanks [@rezrah](https://github.com/rezrah)! - Updated dependencies to latest versions.
8+
- `@primer/react` 38.3.0 → 38.18.0
9+
- `@primer/octicons-react` 19.15.1 → 19.23.1
10+
- `@next/mdx` and `next` 16.1.6 → 16.2.2
11+
- `framer-motion` 12.23.24 → 12.38.0
12+
- Replaced `Hero.Image` with standalone `Image` from `@primer/react-brand` for compatibility with 0.65.1
13+
14+
- [#98](https://github.com/primer/doctocat-nextjs/pull/98) [`a4e4e89`](https://github.com/primer/doctocat-nextjs/commit/a4e4e89d6935250ab6f8ac84d0d2dc8e9f3b5654) Thanks [@rezrah](https://github.com/rezrah)! - Added support for generating [llms.txt](https://llmstxt.org/) at build time. This file will make your site's content easily discoverable by Agentic AI tools like GitHub Copilot.
15+
16+
To enable this feature, create `app/llms.txt/route.ts`:
17+
18+
```ts
19+
import {generateLLMsTxt} from '@primer/doctocat-nextjs/llms'
20+
21+
export const dynamic = 'force-static'
22+
23+
export async function GET() {
24+
const content = await generateLLMsTxt()
25+
26+
return new Response(content, {
27+
headers: {'Content-Type': 'text/plain; charset=utf-8'},
28+
})
29+
}
30+
```
31+
32+
Important: Ensure that `title`, `description` and `keywords` fields are populated in your content's frontmatter.
33+
334
## 0.9.1
435

536
### Patch Changes

packages/theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/doctocat-nextjs",
3-
"version": "0.9.1",
3+
"version": "0.10.0",
44
"description": "A Next.js theme for building Primer documentation sites",
55
"main": "index.js",
66
"type": "module",

0 commit comments

Comments
 (0)