Skip to content

Commit e3a90d5

Browse files
authored
chore: bump version to 0.27.4 (#628)
1 parent 237e847 commit e3a90d5

File tree

12 files changed

+36
-54
lines changed

12 files changed

+36
-54
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,28 @@ jobs:
101101
gh api '/repos/databendlabs/bendsql/releases' > releases.json
102102
aws s3 cp releases.json s3://repo/bendsql/releases.json --checksum-algorithm=CRC32
103103
104+
crates:
105+
runs-on: ubuntu-latest
106+
needs: build_linux
107+
environment:
108+
name: crates.io
109+
url: https://crates.io/crates/databend-driver
110+
steps:
111+
- uses: actions/checkout@v4
112+
- name: Setup Rust toolchain
113+
uses: ./.github/actions/setup
114+
with:
115+
cache-key: publish
116+
- name: Setup Cargo workspaces
117+
run: |
118+
cargo install cargo-quickinstall
119+
cargo quickinstall cargo-workspaces
120+
- name: Release to crates.io
121+
env:
122+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
123+
run: |
124+
cargo workspaces publish --all --publish-as-is --yes
125+
104126
distribution:
105127
needs: build_linux
106128
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ resolver = "2"
1414

1515
[workspace.package]
1616
edition = "2021"
17-
version = "0.27.3"
17+
version = "0.27.4"
1818
license = "Apache-2.0"
1919
authors = ["Databend Authors <[email protected]>"]
2020
categories = ["database"]
2121
keywords = ["databend", "database", "rust"]
2222
repository = "https://github.com/databendlabs/bendsql"
2323

2424
[workspace.dependencies]
25-
databend-client = { path = "core", version = "0.27.3" }
26-
databend-driver = { path = "driver", version = "0.27.3" }
27-
databend-driver-core = { path = "sql", version = "0.27.3" }
28-
databend-driver-macros = { path = "macros", version = "0.27.3" }
25+
databend-client = { path = "core", version = "0.27.4" }
26+
databend-driver = { path = "driver", version = "0.27.4" }
27+
databend-driver-core = { path = "sql", version = "0.27.4" }
28+
databend-driver-macros = { path = "macros", version = "0.27.4" }
2929

3030
jsonb = { version = "0.5.1" }
3131
tokio-stream = "0.1"

bindings/nodejs/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-darwin-arm64",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"darwin"
77
],

bindings/nodejs/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-darwin-x64",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"darwin"
77
],

bindings/nodejs/npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-linux-arm64-gnu",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"linux"
77
],

bindings/nodejs/npm/linux-arm64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-linux-arm64-musl",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"linux"
77
],

bindings/nodejs/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-linux-x64-gnu",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"linux"
77
],

bindings/nodejs/npm/linux-x64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-linux-x64-musl",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"linux"
77
],

bindings/nodejs/npm/win32-arm64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@databend-driver/lib-win32-arm64-msvc",
33
"repository": "https://github.com/databendlabs/bendsql.git",
4-
"version": "0.27.3",
4+
"version": "0.27.4",
55
"os": [
66
"win32"
77
],

0 commit comments

Comments
 (0)