Skip to content

Commit 3c0f77d

Browse files
authored
update to v1.2.2 (#491)
1 parent de4b777 commit 3c0f77d

File tree

10 files changed

+2992
-4726
lines changed

10 files changed

+2992
-4726
lines changed

.github/workflows/rust.yaml

+1-1
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.1"
40+
tag: "v1.2.2"
4141
fileName: ${{ matrix.duckdb }}
4242
out-file-path: .
4343

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "1.2.1"
10+
version = "1.2.2"
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.1", path = "crates/duckdb" }
23-
libduckdb-sys = { version = "=1.2.1", path = "crates/libduckdb-sys" }
24-
duckdb-loadable-macros = { version = "=0.1.5", path = "crates/duckdb-loadable-macros" }
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" }
2525
autocfg = "1.0"
2626
bindgen = { version = "0.71.1", default-features = false }
2727
byteorder = "1.3"

crates/duckdb-loadable-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb-loadable-macros"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

crates/duckdb/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
authors.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/libduckdb-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libduckdb-sys"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

crates/libduckdb-sys/duckdb-sources

Submodule duckdb-sources updated 156 files

crates/libduckdb-sys/duckdb.tar.gz

5.68 KB
Binary file not shown.

crates/libduckdb-sys/src/bindgen_bundled_version.rs

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ pub const DUCKDB_TYPE_DUCKDB_TYPE_TIMESTAMP_TZ: DUCKDB_TYPE = 31;
3737
pub const DUCKDB_TYPE_DUCKDB_TYPE_ANY: DUCKDB_TYPE = 34;
3838
pub const DUCKDB_TYPE_DUCKDB_TYPE_VARINT: DUCKDB_TYPE = 35;
3939
pub const DUCKDB_TYPE_DUCKDB_TYPE_SQLNULL: DUCKDB_TYPE = 36;
40+
pub const DUCKDB_TYPE_DUCKDB_TYPE_STRING_LITERAL: DUCKDB_TYPE = 37;
41+
pub const DUCKDB_TYPE_DUCKDB_TYPE_INTEGER_LITERAL: DUCKDB_TYPE = 38;
4042
#[doc = "! An enum over DuckDB's internal types."]
4143
pub type DUCKDB_TYPE = ::std::os::raw::c_uint;
4244
#[doc = "! An enum over DuckDB's internal types."]

0 commit comments

Comments
 (0)