From 797baf230d477256b3202ac056d346563b2811cf Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 27 Jul 2019 09:48:43 +0200 Subject: [PATCH] [ci skip] Prepare release 0.20 rusqlite 0.20.0 And libsqlite3-sys 0.16.0 --- Cargo.toml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5beb17f..cd4a96d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.19.0" +version = "0.20.0" authors = ["John Gallagher "] edition = "2018" description = "Ergonomic wrapper for SQLite" diff --git a/README.md b/README.md index d3f2ed2..1f2b86a 100644 --- a/README.md +++ b/README.md @@ -120,11 +120,11 @@ You can adjust this behavior in a number of ways: * If you use the `bundled` feature, `libsqlite3-sys` will use the [gcc](https://crates.io/crates/gcc) crate to compile SQLite from source and link against that. This source is embedded in the `libsqlite3-sys` crate and - is currently SQLite 3.28.0 (as of `rusqlite` 0.19.0 / `libsqlite3-sys` - 0.15.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.29.0 (as of `rusqlite` 0.20.0 / `libsqlite3-sys` + 0.16.0). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file: ``` [dependencies.rusqlite] - version = "0.19.0" + version = "0.20.0" features = ["bundled"] ``` * You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite