From 9b78f6e3f743b97c4fb3765ca7e740d615522946 Mon Sep 17 00:00:00 2001 From: gwenn Date: Wed, 24 Apr 2019 18:07:04 +0200 Subject: [PATCH] Prepare 0.18.0 release --- Cargo.toml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d42ee5a..40e2031 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.17.0" +version = "0.18.0" authors = ["John Gallagher "] edition = "2018" description = "Ergonomic wrapper for SQLite" @@ -72,7 +72,7 @@ uuid = { version = "0.7", features = ["v4"] } [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.13" +version = "0.14" [[test]] name = "config_log" diff --git a/README.md b/README.md index 7817629..88a1055 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.27.2 (as of `rusqlite` 0.17.0 / `libsqlite3-sys` - 0.11.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.27.2 (as of `rusqlite` 0.18.0 / `libsqlite3-sys` + 0.14.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.17.0" + version = "0.18.0" features = ["bundled"] ``` * You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite