Skip to content

Commit daeb0f7

Browse files
authored
Upgrade to 0.9.1 (#220)
1 parent b412f69 commit daeb0f7

File tree

9 files changed

+504
-5630
lines changed

9 files changed

+504
-5630
lines changed

.github/workflows/rust.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Download duckdb
3939
with:
4040
repository: "duckdb/duckdb"
41-
tag: "v0.9.0"
41+
tag: "v0.9.1"
4242
fileName: ${{ matrix.duckdb }}
4343
out-file-path: .
4444

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["wangfenjin <[email protected]>"]
55
edition = "2021"
66
description = "Ergonomic wrapper for DuckDB"
@@ -79,7 +79,7 @@ polars-core = "0.33.2"
7979

8080
[dependencies.libduckdb-sys]
8181
path = "libduckdb-sys"
82-
version = "0.9.0"
82+
version = "0.9.1"
8383

8484
[package.metadata.docs.rs]
8585
features = []

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ You can adjust this behavior in a number of ways:
9393
This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file:
9494
```toml
9595
[dependencies]
96-
# Assume that version DuckDB version 0.9.0 is used.
97-
duckdb = { version = "0.9.0", features = ["bundled"] }
96+
# Assume that version DuckDB version 0.9.1 is used.
97+
duckdb = { version = "0.9.1", features = ["bundled"] }
9898
```
9999
* When linking against a DuckDB library already on the system (so *not* using any of the `bundled` features), you can set the `DUCKDB_LIB_DIR` environment variable to point to a directory containing the library. You can also set the `DUCKDB_INCLUDE_DIR` variable to point to the directory containing `duckdb.h`.
100100
* Installing the duckdb development packages will usually be all that is required, but

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 = "0.9.0"
3+
version = "0.9.1"
44
authors = ["wangfenjin <[email protected]>"]
55
edition = "2021"
66
build = "build.rs"

libduckdb-sys/duckdb-sources

Submodule duckdb-sources updated 262 files

libduckdb-sys/duckdb.tar.gz

-252 KB
Binary file not shown.

0 commit comments

Comments
 (0)