Skip to content

Commit 0275b72

Browse files
committed
upgrade sources
1 parent 14e284b commit 0275b72

File tree

10 files changed

+5417
-3038
lines changed

10 files changed

+5417
-3038
lines changed

.github/workflows/rust.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
name: Download duckdb
3838
with:
3939
repository: "duckdb/duckdb"
40-
tag: "v1.2.2"
40+
tag: "v1.3.0"
4141
fileName: ${{ matrix.duckdb }}
4242
out-file-path: .
4343

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.2.2"
10+
version = "1.3.0"
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.2.2", path = "crates/duckdb" }
23-
libduckdb-sys = { version = "=1.2.2", path = "crates/libduckdb-sys" }
24-
duckdb-loadable-macros = { version = "=0.1.6", path = "crates/duckdb-loadable-macros" }
22+
duckdb = { version = "=1.3.0", path = "crates/duckdb" }
23+
libduckdb-sys = { version = "=1.3.0", path = "crates/libduckdb-sys" }
24+
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 }
2727
byteorder = "1.3"

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

crates/duckdb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "1.2.2"
3+
version = "1.3.0"
44
authors.workspace = true
55
edition.workspace = true
66
repository.workspace = true
@@ -18,7 +18,7 @@ description = "Ergonomic wrapper for DuckDB"
1818
name = "duckdb"
1919

2020
[features]
21-
default = []
21+
default = [ "vtab-arrow" ]
2222
bundled = ["libduckdb-sys/bundled"]
2323
json = ["libduckdb-sys/json", "bundled"]
2424
parquet = ["libduckdb-sys/parquet", "bundled"]

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

crates/libduckdb-sys/duckdb-sources

Submodule duckdb-sources updated 2380 files

crates/libduckdb-sys/duckdb.tar.gz

555 KB
Binary file not shown.

crates/libduckdb-sys/src/bindgen_bundled_version.rs

Lines changed: 152 additions & 32 deletions
Large diffs are not rendered by default.

crates/libduckdb-sys/src/bindgen_bundled_version_loadable.rs

Lines changed: 5254 additions & 2995 deletions
Large diffs are not rendered by default.

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

0 commit comments

Comments
 (0)