Python v0.10.1
·
22 commits
to main
since this release
Published to PyPI: https://pypi.org/project/sqlrite/0.10.1/
pip install sqlrite==0.10.1import sqlrite
conn = sqlrite.connect(":memory:")
conn.execute("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)")
conn.execute("INSERT INTO users (name) VALUES (?)", ("alice",))
for row in conn.execute("SELECT * FROM users"):
print(row)Wheels in this release:
- Linux x86_64 (manylinux2014 or newer)
- Linux aarch64 (manylinux2014 or newer)
- macOS aarch64 (Apple Silicon)
- Windows x86_64
- Source distribution (
.tar.gz) — builds from source on other platforms via a local Rust toolchain
All wheels are abi3-py38, so one wheel per platform works on every CPython ≥ 3.8.
See the umbrella release v0.10.1 for the full changelog.
What's Changed
- chore(release): fix bump-version.sh commit-message hint + untrack accidental worktree gitlinks by @joaoh82 in #135
- feat(web): v0.10.0 launch — concurrent-writes blog post + site update (SQLR-57) by @joaoh82 in #136
- feat(web): wire PostHog analytics into sqlritedb.com (SQLR-7) by @joaoh82 in #137
- ci: pin binaryen / wasm-opt for deterministic WASM builds (SQLR-58) by @joaoh82 in #138
- feat(web): keyword research + on-page SEO rewrites (SQLR-33) by @joaoh82 in #139
- feat(examples): SQLR-39 Python LLM agent with persistent memory by @joaoh82 in #140
- feat(examples): SQLR-40 Node.js MCP-powered notes assistant by @joaoh82 in #141
- [codex] Fix HNSW delete/reinsert rebuild by @joaoh82 in #142
- release: v0.10.1 by @joaoh82 in #143
Full Changelog: sdk/go/v0.10.0...sqlrite-py-v0.10.1