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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,25 @@ First run downloads ~50MB model. Subsequent runs use cache.
- **UI**: React islands for interactivity
- **Embeddings**: Xenova (local)

## Releases

Releases are automated via GitHub Actions on every push to `main`. The version bump is determined by [conventional commit](https://www.conventionalcommits.org/) prefixes:

| Commit Prefix | Version Bump | Example |
|---|---|---|
| `feat!:` or `BREAKING CHANGE` | **Major** (v2.0.0) | `feat!: redesign search API` |
| `feat:` | **Minor** (v1.5.0) | `feat(deps): update 19 dependencies` |
| `fix:`, `chore:`, `docs:`, etc. | **Patch** (v1.4.1) | `fix: handle empty search query` |

The workflow automatically:
1. Determines the next version from commit messages since the last tag
2. Updates `package.json` version
3. Runs type checking and tests
4. Creates a version commit and git tag
5. Generates a changelog with [git-cliff](https://git-cliff.org/) and publishes a GitHub Release

To trigger a **minor** release for dependency updates, use `feat(deps):` instead of `chore(deps):` as the commit prefix.

## License

MIT
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.13/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,41 +41,41 @@
"format": "biome format --write ."
},
"dependencies": {
"@astrojs/node": "^10.0.4",
"@astrojs/react": "^5.0.3",
"@libsql/client": "^0.17.2",
"@astrojs/node": "^10.0.6",
"@astrojs/react": "^5.0.4",
"@libsql/client": "^0.17.3",
"@logan/libsql-search": "jsr:^0.1.3",
"@radix-ui/react-dialog": "^1.1.15",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.5",
"@tailwindcss/vite": "^4.2.4",
"astro": "^6.1.9",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"logan-logger": "^1.1.16",
"lucide-react": "^0.577.0",
"marked": "^17.0.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sanitize-html": "^2.17.2",
"lucide-react": "^1.9.0",
"marked": "^18.0.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sanitize-html": "^2.17.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tailwindcss": "^4.2.4",
"winston": "^3.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@biomejs/biome": "^2.4.13",
"@llbbl/uncov": "0.1.4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@vitest/browser": "^4.1.3",
"@vitest/coverage-v8": "^4.1.3",
"@vitest/ui": "^4.1.3",
"happy-dom": "^20.8.9",
"@vitest/browser": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"happy-dom": "^20.9.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.3"
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"pnpm": {
"allowedBuilds": [
Expand Down
Loading
Loading