From f0a505d62d0d6261095fa2229e8d8cd8bfe82725 Mon Sep 17 00:00:00 2001 From: Shawn Chen Date: Mon, 15 Jun 2026 11:27:49 +1200 Subject: [PATCH] release: chdb 3.0.0 on chdb-core v26.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stable release on the v26.5.0 engine line. Pins the per-platform native subpackages to exact 26.5.0 (was the >=26.5.0 range) so a 3.0.0 install always resolves the 26.5.0 engine instead of floating onto a newer subpackage. The raw/streaming insert API is intentionally NOT in this release — it requires the written-rows accessors added to chdb-core after v26.5.0, and ships separately on the v26.5.1 line. Full v3 suite green against v26.5.0 (118 passed). Co-Authored-By: Claude Fable 5 --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 123029d..d8847e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chdb", - "version": "2.0.0", + "version": "3.0.0", "description": "chDB bindings for nodejs", "main": "index.js", "types": "index.d.ts", @@ -58,10 +58,10 @@ "node-gyp-build": "^4.6.0" }, "optionalDependencies": { - "@chdb/lib-linux-x64-gnu": ">=26.5.0", - "@chdb/lib-linux-arm64-gnu": ">=26.5.0", - "@chdb/lib-darwin-x64": ">=26.5.0", - "@chdb/lib-darwin-arm64": ">=26.5.0" + "@chdb/lib-linux-x64-gnu": "26.5.0", + "@chdb/lib-linux-arm64-gnu": "26.5.0", + "@chdb/lib-darwin-x64": "26.5.0", + "@chdb/lib-darwin-arm64": "26.5.0" }, "peerDependencies": { "apache-arrow": ">=14"