From bcc03a8f9ad609e068fbdf2e442f0b6898e977e2 Mon Sep 17 00:00:00 2001 From: Joao Henrique Machado Silva Date: Mon, 1 Jun 2026 10:25:22 +0200 Subject: [PATCH] docs(release): bump displayed version to 0.11.0 (site + install snippets) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.11.0 is now published across crates.io / npm / PyPI / WASM / Go, so update the version surfaces that lag behind: - web/src/lib/site.ts: SITE.version 0.10.0 → 0.11.0. This is the single source of truth the marketing site reads — it drives the hero badge, the docs page header, the SDK showcase cards, and the structured-data softwareVersion. (It was even stale at 0.10.0 through the 0.10.x line.) - README.md / docs/embedding.md / docs/ask.md: the Rust install snippets pinned `sqlrite-engine = "0.1"` / `sqlrite-ask = "0.1"`. In Cargo `"0.1"` means >=0.1.0,<0.2.0, which EXCLUDES 0.11.0 — so copy-pasting resolved an ancient 0.1.x. Bump to "0.11" so the documented pin actually 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 a03c565..2cdc1a2 100644 --- a/README.md +++ b/README.md @@ -214,8 +214,8 @@ Expressions in `WHERE` and `UPDATE`'s `SET` RHS: ```toml [dependencies] -sqlrite-engine = "0.1" -sqlrite-ask = "0.1" +sqlrite-engine = "0.11" +sqlrite-ask = "0.11" ``` ```rust diff --git a/docs/ask.md b/docs/ask.md index abe7e35..465c77e 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.1" -sqlrite-ask = "0.1" +sqlrite-engine = "0.11" +sqlrite-ask = "0.11" ``` ```rust diff --git a/docs/embedding.md b/docs/embedding.md index 4b2cee9..5fb244c 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.1" -sqlrite-ask = "0.1" +sqlrite-engine = "0.11" +sqlrite-ask = "0.11" ``` ```rust diff --git a/web/src/lib/site.ts b/web/src/lib/site.ts index c277228..3fcc43a 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.10.0", + version: "0.11.0", repo: "https://github.com/joaoh82/rust_sqlite", discord: "https://discord.gg/dHPmw89zAE", docsRs: "https://docs.rs/sqlrite-engine",