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
140 changes: 123 additions & 17 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "laminardb"
version = "0.15.0"
version = "0.15.1"
edition = "2024"
rust-version = "1.85"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "laminardb"
version = "0.15.0"
version = "0.15.1"
description = "Python bindings for LaminarDB streaming SQL database"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
5 changes: 5 additions & 0 deletions python/laminardb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
AsyncSubscription Asynchronous continuous query subscription.
StreamSubscription Synchronous named-stream subscription.
AsyncStreamSubscription Asynchronous named-stream subscription.
CallbackSubscription Push-based subscription with callbacks.
MaterializedView High-level wrapper for named streams.
Schema Convenience wrapper around PyArrow Schema.
ChangeEvent A batch of change rows from a subscription.
Expand Down Expand Up @@ -39,7 +40,9 @@
from laminardb._laminardb import (
AsyncStreamSubscription,
AsyncSubscription,
CallbackSubscription,
CheckpointError,
CheckpointResult,
Connection,
ConnectionError,
ConnectorError,
Expand Down Expand Up @@ -155,6 +158,7 @@ def mv(conn: Connection, name: str, sql_def: str | None = None) -> MaterializedV
"execute",
"mv",
# Core classes
"CheckpointResult",
"Connection",
"ExecuteResult",
"LaminarConfig",
Expand All @@ -164,6 +168,7 @@ def mv(conn: Connection, name: str, sql_def: str | None = None) -> MaterializedV
"AsyncSubscription",
"StreamSubscription",
"AsyncStreamSubscription",
"CallbackSubscription",
# Aliases
"Config",
"BatchWriter",
Expand Down
Loading