Skip to content

Commit 65e8496

Browse files
authored
2 parents d648bf9 + da8e4e9 commit 65e8496

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
@@ -46,7 +46,7 @@ jobs:
4646
if: matrix.os == 'windows-latest'
4747
with:
4848
repository: "duckdb/duckdb"
49-
tag: "v1.4.2"
49+
tag: "v1.4.3"
5050
fileName: ${{ matrix.duckdb }}
5151
out-file-path: .
5252

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.2"
10+
version = "1.4.3"
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.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" }
23+
duckdb = { version = "=1.4.3", path = "crates/duckdb" }
24+
duckdb-loadable-macros = { version = "=0.1.13", path = "crates/duckdb-loadable-macros" }
25+
libduckdb-sys = { version = "=1.4.3", 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.12"
3+
version = "0.1.13"
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.2"
3+
version = "1.4.3"
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.2"
3+
version = "1.4.3"
44
authors = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }
Submodule duckdb-sources updated 174 files

crates/libduckdb-sys/duckdb.tar.gz

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

0 commit comments

Comments
 (0)