Skip to content

Commit c6ee658

Browse files
mlafeldtMaxxen
authored andcommitted
Update to DuckDB v1.3.1
1 parent 55f869c commit c6ee658

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/rust.yaml

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

Cargo.toml

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

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

2121
[workspace.dependencies]
22-
duckdb = { version = "=1.3.0", path = "crates/duckdb" }
23-
libduckdb-sys = { version = "=1.3.0", path = "crates/libduckdb-sys" }
22+
duckdb = { version = "=1.3.1", path = "crates/duckdb" }
23+
libduckdb-sys = { version = "=1.3.1", path = "crates/libduckdb-sys" }
2424
duckdb-loadable-macros = { version = "=0.1.7", path = "crates/duckdb-loadable-macros" }
2525
autocfg = "1.0"
2626
bindgen = { version = "0.71.1", default-features = false }

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.0"
3+
version = "1.3.1"
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.0"
3+
version = "1.3.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

crates/libduckdb-sys/duckdb-sources

Submodule duckdb-sources updated 266 files

crates/libduckdb-sys/duckdb.tar.gz

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

0 commit comments

Comments
 (0)