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
5 changes: 5 additions & 0 deletions .changeset/include-changelog-in-package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chanfana": patch
---

Include CHANGELOG.md in the npm package so AI agents and tools can read the project's change history. Also add a changelog page to the documentation site.
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export default defineConfig({
{text: "Advanced Patterns", link: "/advanced-topics-patterns"},
{text: "Troubleshooting And FAQ", link: "/troubleshooting-and-faq"},
{text: "Migration to Chanfana v3", link: "/migration-to-chanfana-3"},
{text: "Changelog", link: "/changelog"},
],
},
],
Expand Down
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Changelog
description: A complete history of changes, fixes, and new features in chanfana.
---

# Changelog

All notable changes to chanfana are documented here.

<!--@include: ../CHANGELOG.md-->
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"AGENTS.md",
"llms.txt",
"LICENSE",
"README.md"
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rm -rf dist/ && tsc && tsup src/index.ts src/cli.ts --format cjs,esm --dts --config tsconfig.json --external Hono",
Expand Down
Loading