Skip to content

Commit

Permalink
Upgrade to 0.9.1 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenanwarren committed Oct 12, 2023
1 parent b412f69 commit daeb0f7
Show file tree
Hide file tree
Showing 9 changed files with 504 additions and 5,630 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yaml
Expand Up @@ -38,7 +38,7 @@ jobs:
name: Download duckdb
with:
repository: "duckdb/duckdb"
tag: "v0.9.0"
tag: "v0.9.1"
fileName: ${{ matrix.duckdb }}
out-file-path: .

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "duckdb"
version = "0.9.0"
version = "0.9.1"
authors = ["wangfenjin <wangfenj@gmail.com>"]
edition = "2021"
description = "Ergonomic wrapper for DuckDB"
Expand Down Expand Up @@ -79,7 +79,7 @@ polars-core = "0.33.2"

[dependencies.libduckdb-sys]
path = "libduckdb-sys"
version = "0.9.0"
version = "0.9.1"

[package.metadata.docs.rs]
features = []
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -93,8 +93,8 @@ You can adjust this behavior in a number of ways:
This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file:
```toml
[dependencies]
# Assume that version DuckDB version 0.9.0 is used.
duckdb = { version = "0.9.0", features = ["bundled"] }
# Assume that version DuckDB version 0.9.1 is used.
duckdb = { version = "0.9.1", features = ["bundled"] }
```
* 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`.
* Installing the duckdb development packages will usually be all that is required, but
Expand Down
2 changes: 1 addition & 1 deletion libduckdb-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libduckdb-sys"
version = "0.9.0"
version = "0.9.1"
authors = ["wangfenjin <wangfenj@gmail.com>"]
edition = "2021"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion libduckdb-sys/duckdb-sources
Submodule duckdb-sources updated 262 files
Binary file modified libduckdb-sys/duckdb.tar.gz
Binary file not shown.

0 comments on commit daeb0f7

Please sign in to comment.