From f2afc8ad7596086a5dd822c2c21425f80afaf058 Mon Sep 17 00:00:00 2001 From: Joao Henrique Machado Silva Date: Tue, 2 Jun 2026 09:57:41 +0200 Subject: [PATCH] docs(release): bump displayed version to 0.12.0 (site + install snippets) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.12.0 is published across crates.io / npm / PyPI / WASM / Go, so update the version surfaces that the release pipeline doesn't touch: - web/src/lib/site.ts: SITE.version 0.11.0 → 0.12.0 — the single source of truth the marketing site reads (hero badge, docs header, SDK showcase cards, structured-data softwareVersion). - README.md / docs/embedding.md / docs/ask.md: the Rust install snippets pinned `sqlrite-engine = "0.11"` / `sqlrite-ask = "0.11"`. Bump to "0.12" so the documented pin installs the current release. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 4 ++-- docs/ask.md | 4 ++-- docs/embedding.md | 4 ++-- web/src/lib/site.ts | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b25777a..dd5ba60 100644 --- a/README.md +++ b/README.md @@ -214,8 +214,8 @@ Expressions in `WHERE` and `UPDATE`'s `SET` RHS: ```toml [dependencies] -sqlrite-engine = "0.11" -sqlrite-ask = "0.11" +sqlrite-engine = "0.12" +sqlrite-ask = "0.12" ``` ```rust diff --git a/docs/ask.md b/docs/ask.md index 465c77e..72290ca 100644 --- a/docs/ask.md +++ b/docs/ask.md @@ -131,8 +131,8 @@ If `SQLRITE_LLM_API_KEY` is missing, the panel surfaces a clean "missing API key ```toml [dependencies] -sqlrite-engine = "0.11" -sqlrite-ask = "0.11" +sqlrite-engine = "0.12" +sqlrite-ask = "0.12" ``` ```rust diff --git a/docs/embedding.md b/docs/embedding.md index 5fb244c..6322a34 100644 --- a/docs/embedding.md +++ b/docs/embedding.md @@ -153,8 +153,8 @@ The retryable-error branch is the headline new flow: pick a backoff policy that [dependencies] # `ask` is a default feature on sqlrite-engine; opt out with # default-features = false if you don't want the LLM stack pulled in. -sqlrite-engine = "0.11" -sqlrite-ask = "0.11" +sqlrite-engine = "0.12" +sqlrite-ask = "0.12" ``` ```rust diff --git a/web/src/lib/site.ts b/web/src/lib/site.ts index 3fcc43a..7a90b5f 100644 --- a/web/src/lib/site.ts +++ b/web/src/lib/site.ts @@ -1,7 +1,7 @@ export const SITE = { url: "https://sqlritedb.com", twitterHandle: "@CodePolyglot", - version: "0.11.0", + version: "0.12.0", repo: "https://github.com/joaoh82/rust_sqlite", discord: "https://discord.gg/dHPmw89zAE", docsRs: "https://docs.rs/sqlrite-engine",