Skip to content

Commit 19acb89

Browse files
authored
2 parents d150003 + 9e28233 commit 19acb89

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/rust.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: Download duckdb
3737
with:
3838
repository: "duckdb/duckdb"
39-
tag: "v1.3.1"
39+
tag: "v1.3.2"
4040
fileName: ${{ matrix.duckdb }}
4141
out-file-path: .
4242

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "1.3.1"
10+
version = "1.3.2"
1111
authors = ["wangfenjin <[email protected]>"]
1212
edition = "2021"
1313
repository = "https://github.com/duckdb/duckdb-rs"
@@ -19,9 +19,9 @@ license = "MIT"
1919
categories = ["database"]
2020

2121
[workspace.dependencies]
22-
duckdb = { version = "=1.3.1", path = "crates/duckdb" }
23-
duckdb-loadable-macros = { version = "=0.1.8", path = "crates/duckdb-loadable-macros" }
24-
libduckdb-sys = { version = "=1.3.1", path = "crates/libduckdb-sys" }
22+
duckdb = { version = "=1.3.2", path = "crates/duckdb" }
23+
duckdb-loadable-macros = { version = "=0.1.9", path = "crates/duckdb-loadable-macros" }
24+
libduckdb-sys = { version = "=1.3.2", path = "crates/libduckdb-sys" }
2525

2626
arrow = { version = "55", default-features = false }
2727
bindgen = { version = "0.71.1", default-features = false }

crates/duckdb-loadable-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb-loadable-macros"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

crates/duckdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "1.3.1"
3+
version = "1.3.2"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
repository = { workspace = true }

crates/libduckdb-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libduckdb-sys"
3-
version = "1.3.1"
3+
version = "1.3.2"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }

crates/libduckdb-sys/duckdb-sources

Submodule duckdb-sources updated 93 files

crates/libduckdb-sys/duckdb.tar.gz

2.34 KB
Binary file not shown.

crates/libduckdb-sys/upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mkdir -p "$SCRIPT_DIR/../../target" "$SCRIPT_DIR/duckdb"
1212
export DUCKDB_LIB_DIR="$SCRIPT_DIR/duckdb"
1313

1414
# Download and extract amalgamation
15-
DUCKDB_VERSION=v1.3.1
15+
DUCKDB_VERSION=v1.3.2
1616
git submodule update --init --checkout
1717
cd "$SCRIPT_DIR/duckdb-sources"
1818
git fetch

0 commit comments

Comments
 (0)