From 405d0de8f61adc01ccfc9f8ad9327e041ee716de Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 22 Aug 2020 07:23:03 +0200 Subject: [PATCH] Prepare release of version 0.24.0 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9a4ef40..6394b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.23.1" +version = "0.24.0" authors = ["The rusqlite developers"] edition = "2018" description = "Ergonomic wrapper for SQLite" diff --git a/README.md b/README.md index d90d97a..300c2b3 100644 --- a/README.md +++ b/README.md @@ -119,11 +119,11 @@ You can adjust this behavior in a number of ways: * If you use the `bundled` feature, `libsqlite3-sys` will use the [cc](https://crates.io/crates/cc) crate to compile SQLite from source and link against that. This source is embedded in the `libsqlite3-sys` crate and - is currently SQLite 3.30.1 (as of `rusqlite` 0.21.0 / `libsqlite3-sys` - 0.17.0). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file: + is currently SQLite 3.33.0 (as of `rusqlite` 0.24.0 / `libsqlite3-sys` + 0.20.0). 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.rusqlite] - version = "0.21.0" + version = "0.24.0" features = ["bundled"] ``` * You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite