Skip to content

Upgrade to DuckDB v1.2.2 #491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Download duckdb
with:
repository: "duckdb/duckdb"
tag: "v1.2.1"
tag: "v1.2.2"
fileName: ${{ matrix.duckdb }}
out-file-path: .

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "1.2.1"
version = "1.2.2"
authors = ["wangfenjin <[email protected]>"]
edition = "2021"
repository = "https://github.com/duckdb/duckdb-rs"
Expand All @@ -19,9 +19,9 @@ license = "MIT"
categories = ["database"]

[workspace.dependencies]
duckdb = { version = "=1.2.1", path = "crates/duckdb" }
libduckdb-sys = { version = "=1.2.1", path = "crates/libduckdb-sys" }
duckdb-loadable-macros = { version = "=0.1.5", path = "crates/duckdb-loadable-macros" }
duckdb = { version = "=1.2.2", path = "crates/duckdb" }
libduckdb-sys = { version = "=1.2.2", path = "crates/libduckdb-sys" }
duckdb-loadable-macros = { version = "=0.1.6", path = "crates/duckdb-loadable-macros" }
autocfg = "1.0"
bindgen = { version = "0.71.1", default-features = false }
byteorder = "1.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/duckdb-loadable-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckdb-loadable-macros"
version = "0.1.5"
version = "0.1.6"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/duckdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckdb"
version = "1.2.1"
version = "1.2.2"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/libduckdb-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libduckdb-sys"
version = "1.2.1"
version = "1.2.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/libduckdb-sys/duckdb-sources
Submodule duckdb-sources updated 156 files
Binary file modified crates/libduckdb-sys/duckdb.tar.gz
Binary file not shown.
2 changes: 2 additions & 0 deletions crates/libduckdb-sys/src/bindgen_bundled_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ pub const DUCKDB_TYPE_DUCKDB_TYPE_TIMESTAMP_TZ: DUCKDB_TYPE = 31;
pub const DUCKDB_TYPE_DUCKDB_TYPE_ANY: DUCKDB_TYPE = 34;
pub const DUCKDB_TYPE_DUCKDB_TYPE_VARINT: DUCKDB_TYPE = 35;
pub const DUCKDB_TYPE_DUCKDB_TYPE_SQLNULL: DUCKDB_TYPE = 36;
pub const DUCKDB_TYPE_DUCKDB_TYPE_STRING_LITERAL: DUCKDB_TYPE = 37;
pub const DUCKDB_TYPE_DUCKDB_TYPE_INTEGER_LITERAL: DUCKDB_TYPE = 38;
#[doc = "! An enum over DuckDB's internal types."]
pub type DUCKDB_TYPE = ::std::os::raw::c_uint;
#[doc = "! An enum over DuckDB's internal types."]
Expand Down
Loading
Loading