Skip to content

Commit

Permalink
chore: bump version 0.6.5 (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Sep 7, 2023
1 parent 5c764c2 commit 9fbd365
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.6.4"
version = "0.6.5"
edition = "2021"
license = "Apache-2.0"
authors = ["Databend Authors <opensource@datafuselabs.com>"]
Expand All @@ -21,7 +21,7 @@ keywords = ["databend", "database"]
repository = "https://github.com/datafuselabs/bendsql"

[workspace.dependencies]
databend-client = { path = "core", version = "0.6.4" }
databend-driver = { path = "driver", version = "0.6.4" }
databend-driver-macros = { path = "macros", version = "0.6.4" }
databend-sql = { path = "sql", version = "0.6.4" }
databend-client = { path = "core", version = "0.6.5" }
databend-driver = { path = "driver", version = "0.6.5" }
databend-driver-macros = { path = "macros", version = "0.6.5" }
databend-sql = { path = "sql", version = "0.6.5" }
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@databend-driver/lib-darwin-arm64",
"repository": "https://github.com/datafuselabs/bendsql.git",
"version": "0.6.4",
"version": "0.6.5",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@databend-driver/lib-darwin-x64",
"repository": "https://github.com/datafuselabs/bendsql.git",
"version": "0.6.4",
"version": "0.6.5",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@databend-driver/lib-linux-x64-gnu",
"repository": "https://github.com/datafuselabs/bendsql.git",
"version": "0.6.4",
"version": "0.6.5",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@databend-driver/lib-win32-x64-msvc",
"repository": "https://github.com/datafuselabs/bendsql.git",
"version": "0.6.4",
"version": "0.6.5",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "databend-driver",
"author": "Databend Authors <opensource@datafuselabs.com>",
"version": "0.6.4",
"version": "0.6.5",
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/tests/binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Then("Stream load and Select should be equal", async function () {
];
const progress = await this.conn.streamLoad(`INSERT INTO test VALUES`, values);
assert.equal(progress.writeRows, 3);
assert.equal(progress.writeBytes, 178);
assert.equal(progress.writeBytes, 185);

const rows = await this.conn.queryIter("SELECT * FROM test");
const ret = [];
Expand Down

0 comments on commit 9fbd365

Please sign in to comment.