Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resolver = "3"
# `package =` key so the import name stays `sqlrite` internally:
# sqlrite = { package = "sqlrite-engine", path = "…" }
name = "sqlrite-engine"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down Expand Up @@ -150,4 +150,4 @@ fs2 = { version = "0.4", optional = true }
# crate publishes to crates.io, and a path-only dep without a
# version field fails the manifest verification step. See PR #58
# retrospective in docs/roadmap.md.
sqlrite-ask = { version = "0.10.0", path = "sqlrite-ask", optional = true }
sqlrite-ask = { version = "0.10.1", path = "sqlrite-ask", optional = true }
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ duckdb = ["dep:duckdb"]
# The engine. Default features off (no rustyline / clap / `ask`), but
# `file-locks` is on so the comparison runs the same lock-acquisition
# path that any real SQLRite consumer pays.
sqlrite = { package = "sqlrite-engine", path = "..", version = "0.10.0", default-features = false, features = ["file-locks"] }
sqlrite = { package = "sqlrite-engine", path = "..", version = "0.10.1", default-features = false, features = ["file-locks"] }

# SQLite via rusqlite, with `bundled` so the comparison is against a
# known SQLite version (not whatever happens to be on the host).
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sqlrite-desktop-frontend",
"private": true,
"version": "0.10.0",
"version": "0.10.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlrite-desktop"
version = "0.10.0"
version = "0.10.1"
description = "SQLRite desktop app — Tauri 2 shell around the engine"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "SQLRite",
"version": "0.10.0",
"version": "0.10.1",
"identifier": "com.sqlrite.desktop",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlrite-nodejs"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@joaoh82/sqlrite",
"version": "0.10.0",
"version": "0.10.1",
"description": "Node.js bindings for SQLRite — a small, embeddable SQLite clone written in Rust.",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlrite-python"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "sqlrite"
version = "0.10.0"
version = "0.10.1"
description = "Python bindings for SQLRite — a small, embeddable SQLite clone written in Rust."
authors = [{ name = "Joao Henrique Machado Silva", email = "joaoh82@gmail.com" }]
license = { text = "MIT" }
Expand Down
4 changes: 2 additions & 2 deletions sdk/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[package]
name = "sqlrite-wasm"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down Expand Up @@ -46,7 +46,7 @@ sqlrite = { package = "sqlrite-engine", path = "../..", default-features = false
# builds for wasm32). Per Q9, the WASM SDK never makes the HTTP call
# itself — the JS caller does that. Browser → backend → LLM provider
# → JS hands the raw response back to `db.askParse()`.
sqlrite-ask = { version = "0.10.0", path = "../../sqlrite-ask", default-features = false }
sqlrite-ask = { version = "0.10.1", path = "../../sqlrite-ask", default-features = false }

# wasm-bindgen + friends. `serde-serialize` on wasm-bindgen gives
# us `serde_wasm_bindgen` interop for structured row objects.
Expand Down
2 changes: 1 addition & 1 deletion sqlrite-ask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Published to crates.io as `sqlrite-ask`. Joins the lockstep release
# wave (`sqlrite-ask-vX.Y.Z` tag) — see `docs/release-plan.md`.
name = "sqlrite-ask"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion sqlrite-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlrite-ffi"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down
4 changes: 2 additions & 2 deletions sqlrite-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Published to crates.io as `sqlrite-mcp`. Joins the lockstep
# release wave (`sqlrite-mcp-vX.Y.Z` tag) — see `docs/release-plan.md`.
name = "sqlrite-mcp"
version = "0.10.0"
version = "0.10.1"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
Expand Down Expand Up @@ -52,7 +52,7 @@ ask = ["sqlrite/ask"]
# off (which excludes the `cli` feature and its rustyline/clap pull
# weight) and only enable `ask` when our own `ask` feature is on.
# Keeps the MCP binary small + boot-fast.
sqlrite = { package = "sqlrite-engine", path = "..", version = "0.10.0", default-features = false }
sqlrite = { package = "sqlrite-engine", path = "..", version = "0.10.1", default-features = false }

# JSON-RPC + tool I/O. The MCP wire format is JSON in / JSON out;
# tool argument schemas are JSON; tool results are JSON. serde +
Expand Down
Loading