Skip to content

Commit d8b4e97

Browse files
committed
chore: bump to v0.23.0
1 parent f4abcec commit d8b4e97

File tree

5 files changed

+31
-3
lines changed

5 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
## [0.23.0] - 2026-03-10
13+
14+
### Added
15+
16+
- First stable SDK / library mode at the package root via `createGnoClient(...)`, with inline-config and file-backed startup, direct retrieval/document methods, and programmatic `update` / `embed` / `index` flows.
17+
18+
### Changed
19+
20+
- Package root now resolves to the SDK surface; the CLI remains available through the `gno` binary and `./cli` export.
21+
- Added full SDK docs, README coverage, architecture notes, website nav, homepage copy, and a dedicated SDK feature page.
22+
1223
## [0.22.6] - 2026-03-10
1324

1425
### Fixed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,14 @@ GNO is a local knowledge engine that turns your documents into a searchable, con
3434

3535
---
3636

37-
## What's New in v0.22
37+
## What's New in v0.23
38+
39+
- **SDK / Library Mode**: package-root importable SDK with `createGnoClient(...)` for direct retrieval, document access, and indexing flows
40+
- **Inline Config Support**: embed GNO in another app without writing YAML config files
41+
- **Programmatic Indexing**: call `update`, `embed`, and `index` directly from Bun/TypeScript
42+
- **Docs & Website**: dedicated SDK guide, feature page, homepage section, and architecture docs
43+
44+
### v0.22
3845

3946
- **Promoted Slim Retrieval Model**: published `slim-retrieval-v1` on Hugging Face for direct `hf:` installation in GNO
4047
- **Fine-Tuning Workflow**: local MLX LoRA training, portable GGUF export, automatic checkpoint selection, promotion bundles, and repeatable benchmark comparisons

docs/INSTALLATION.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ bun install -g @gmickel/gno
1515
gno doctor
1616
```
1717

18+
### SDK / Library Install
19+
20+
```bash
21+
bun add @gmickel/gno
22+
```
23+
24+
```ts
25+
import { createGnoClient } from "@gmickel/gno";
26+
```
27+
1828
> **macOS users**: Vector search requires Homebrew SQLite. See [macOS setup](#macos) below.
1929
2030
## Requirements

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gmickel/gno",
3-
"version": "0.22.6",
3+
"version": "0.23.0",
44
"description": "Local semantic search for your documents. Index Markdown, PDF, and Office files with hybrid BM25 + vector search.",
55
"keywords": [
66
"embeddings",

website/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ social:
1919
- https://twitter.com/gmickel
2020
logo: /assets/images/logo.png
2121
og_image: /assets/images/og/og-image.png
22-
version: "0.3.5"
22+
version: "0.23.0"
2323
lang: en_US
2424

2525
# Build settings

0 commit comments

Comments
 (0)