Skip to content

Commit bc071de

Browse files
joaoh82claude
andauthored
docs(release): bump displayed version to 0.11.0 (site + install snippets) (#155)
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) <noreply@anthropic.com>
1 parent a19a2df commit bc071de

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ Expressions in `WHERE` and `UPDATE`'s `SET` RHS:
214214

215215
```toml
216216
[dependencies]
217-
sqlrite-engine = "0.1"
218-
sqlrite-ask = "0.1"
217+
sqlrite-engine = "0.11"
218+
sqlrite-ask = "0.11"
219219
```
220220

221221
```rust

docs/ask.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ If `SQLRITE_LLM_API_KEY` is missing, the panel surfaces a clean "missing API key
131131

132132
```toml
133133
[dependencies]
134-
sqlrite-engine = "0.1"
135-
sqlrite-ask = "0.1"
134+
sqlrite-engine = "0.11"
135+
sqlrite-ask = "0.11"
136136
```
137137

138138
```rust

docs/embedding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ The retryable-error branch is the headline new flow: pick a backoff policy that
153153
[dependencies]
154154
# `ask` is a default feature on sqlrite-engine; opt out with
155155
# default-features = false if you don't want the LLM stack pulled in.
156-
sqlrite-engine = "0.1"
157-
sqlrite-ask = "0.1"
156+
sqlrite-engine = "0.11"
157+
sqlrite-ask = "0.11"
158158
```
159159

160160
```rust

web/src/lib/site.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const SITE = {
22
url: "https://sqlritedb.com",
33
twitterHandle: "@CodePolyglot",
4-
version: "0.10.0",
4+
version: "0.11.0",
55
repo: "https://github.com/joaoh82/rust_sqlite",
66
discord: "https://discord.gg/dHPmw89zAE",
77
docsRs: "https://docs.rs/sqlrite-engine",

0 commit comments

Comments
 (0)