Skip to content

Commit 8c512ff

Browse files
committed
v0.3.4
1 parent 10696c9 commit 8c512ff

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@manzt/quak",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"exports": "./lib/mod.ts",
55
"license": "MIT",
66
"tasks": {

lib/clients/DataTable.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,11 @@ export async function datatable(
5858
let empty = await options.coordinator.query(
5959
Query
6060
.from(table)
61-
.select(options.columns?.map( columnName => {
62-
return column(columnName, undefined);
63-
}) ?? ["*"])
61+
.select(
62+
options.columns?.map((columnName) => {
63+
return column(columnName, undefined);
64+
}) ?? ["*"],
65+
)
6466
.limit(0),
6567
{ type: "arrow" },
6668
);

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quak"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
readme = "README.md"
55
requires-python = ">=3.8"
66
dependencies = ["anywidget>=0.9.0", "duckdb>=1.0.0", "pyarrow>=16.0.0"]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)