Skip to content

Commit c9f5ff5

Browse files
committed
update to duckdb v1.4.2
1 parent fdbbd00 commit c9f5ff5

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
@@ -41,7 +41,7 @@ jobs:
4141
name: Download duckdb
4242
with:
4343
repository: "duckdb/duckdb"
44-
tag: "v1.4.1"
44+
tag: "v1.4.2"
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: 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.4.1"
10+
version = "1.4.2"
1111
authors = ["wangfenjin <wangfenj@gmail.com>"]
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.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" }
23+
duckdb = { version = "=1.4.2", path = "crates/duckdb" }
24+
duckdb-loadable-macros = { version = "=0.1.12", path = "crates/duckdb-loadable-macros" }
25+
libduckdb-sys = { version = "=1.4.2", path = "crates/libduckdb-sys" }
2626

2727
arrow = { version = "56", default-features = false }
2828
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.11"
3+
version = "0.1.12"
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.1"
3+
version = "1.4.2"
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.1"
3+
version = "1.4.2"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }
Submodule duckdb-sources updated 704 files

crates/libduckdb-sys/duckdb.tar.gz

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

0 commit comments

Comments
 (0)