Skip to content

Commit f4fe688

Browse files
committed
Update DuckDB to v1.4.1
1 parent 8645704 commit f4fe688

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/rust.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: Download duckdb
4242
with:
4343
repository: "duckdb/duckdb"
44-
tag: "v1.4.0"
44+
tag: "v1.4.1"
4545
fileName: ${{ matrix.duckdb }}
4646
out-file-path: .
4747

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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "1.4.0"
10+
version = "1.4.1"
1111
authors = ["wangfenjin <[email protected]>"]
1212
repository = "https://github.com/duckdb/duckdb-rs"
1313
homepage = "https://github.com/duckdb/duckdb-rs"
@@ -20,9 +20,9 @@ edition = "2021"
2020
rust-version = "1.84.1"
2121

2222
[workspace.dependencies]
23-
duckdb = { version = "=1.4.0", path = "crates/duckdb" }
24-
duckdb-loadable-macros = { version = "=0.1.10", path = "crates/duckdb-loadable-macros" }
25-
libduckdb-sys = { version = "=1.4.0", path = "crates/libduckdb-sys" }
23+
duckdb = { version = "=1.4.1", path = "crates/duckdb" }
24+
duckdb-loadable-macros = { version = "=0.1.11", path = "crates/duckdb-loadable-macros" }
25+
libduckdb-sys = { version = "=1.4.1", path = "crates/libduckdb-sys" }
2626

2727
arrow = { version = "56", default-features = false }
2828
bindgen = { version = "0.71.1", default-features = false }
@@ -44,7 +44,7 @@ pkg-config = "0.3.24"
4444
polars = "0.49.1"
4545
polars-arrow = "0.49.1"
4646
polars-core = "0.49.1"
47-
pretty_assertions = "1.4.0"
47+
pretty_assertions = "1.4.1"
4848
prettyplease = "0.2.20"
4949
proc-macro2 = "1.0.56"
5050
quote = "1.0.21"

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.10"
3+
version = "0.1.11"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { 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.4.0"
3+
version = "1.4.1"
44
authors = { workspace = true }
55
repository = { workspace = true }
66
homepage = { 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.4.0"
3+
version = "1.4.1"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }
Submodule duckdb-sources updated 331 files

crates/libduckdb-sys/duckdb.tar.gz

343 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.4.0
15+
DUCKDB_VERSION=v1.4.1
1616
git submodule update --init --checkout
1717
cd "$SCRIPT_DIR/duckdb-sources"
1818
git fetch

0 commit comments

Comments
 (0)