Skip to content

Commit e67ca01

Browse files
joaoh82claude
andauthored
docs(release): bump displayed version to 0.13.0 (site + install snippets) (#163)
* docs(release): bump displayed version to 0.13.0 (site + install snippets) Same shape as #160 for v0.12.0: the Cargo install snippets in README, docs/ask.md, and docs/embedding.md, plus the site-wide version constant in web/src/lib/site.ts. v0.13.0 shipped HAVING (SQLR-52, #161). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore(playground): refresh vendored WASM bundle to the 0.13.0 engine The /playground pkg is a pinned copy Vercel never rebuilds, so it was still serving the pre-0.12 engine (last refreshed in SQLR-42). Rebuilt via the documented flow in examples/wasm-playground/README.md; only the .wasm binary changed (no SDK API change, glue files identical). Also picks up sdk/wasm/Cargo.lock's 0.13.0 bump — sdk/wasm sits outside the workspace, so the Release PR's lock refresh couldn't reach it. Smoke-verified in Node: GROUP BY ... HAVING total > 100 returns the filtered group through the new bundle. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent c00ce18 commit e67ca01

6 files changed

Lines changed: 10 additions & 10 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.12"
218-
sqlrite-ask = "0.12"
217+
sqlrite-engine = "0.13"
218+
sqlrite-ask = "0.13"
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.12"
135-
sqlrite-ask = "0.12"
134+
sqlrite-engine = "0.13"
135+
sqlrite-ask = "0.13"
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.12"
157-
sqlrite-ask = "0.12"
156+
sqlrite-engine = "0.13"
157+
sqlrite-ask = "0.13"
158158
```
159159

160160
```rust

sdk/wasm/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
21.7 KB
Binary file not shown.

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.12.0",
4+
version: "0.13.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)