From 7619f638a868cc98597a5f270706684f8e729a6c Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 16 Dec 2018 18:15:58 +0100 Subject: [PATCH] [ci skip] Prepare 0.16.0 release --- Cargo.toml | 2 +- README.md | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f21e575..14163c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.15.0" +version = "0.16.0" authors = ["John Gallagher "] edition = "2018" description = "Ergonomic wrapper for SQLite" diff --git a/README.md b/README.md index 9bdfa39..7e4472d 100644 --- a/README.md +++ b/README.md @@ -74,26 +74,26 @@ newer SQLite version; see details below. Rusqlite provides several features that are behind [Cargo features](https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-section). They are: -* [`load_extension`](https://docs.rs/rusqlite/0.15.0/rusqlite/struct.LoadExtensionGuard.html) +* [`load_extension`](https://docs.rs/rusqlite/0.16.0/rusqlite/struct.LoadExtensionGuard.html) allows loading dynamic library-based SQLite extensions. -* [`backup`](https://docs.rs/rusqlite/0.15.0/rusqlite/backup/index.html) +* [`backup`](https://docs.rs/rusqlite/0.16.0/rusqlite/backup/index.html) allows use of SQLite's online backup API. Note: This feature requires SQLite 3.6.11 or later. -* [`functions`](https://docs.rs/rusqlite/0.15.0/rusqlite/functions/index.html) +* [`functions`](https://docs.rs/rusqlite/0.16.0/rusqlite/functions/index.html) allows you to load Rust closures into SQLite connections for use in queries. Note: This feature requires SQLite 3.7.3 or later. -* [`trace`](https://docs.rs/rusqlite/0.15.0/rusqlite/trace/index.html) +* [`trace`](https://docs.rs/rusqlite/0.16.0/rusqlite/trace/index.html) allows hooks into SQLite's tracing and profiling APIs. Note: This feature requires SQLite 3.6.23 or later. -* [`blob`](https://docs.rs/rusqlite/0.15.0/rusqlite/blob/index.html) +* [`blob`](https://docs.rs/rusqlite/0.16.0/rusqlite/blob/index.html) gives `std::io::{Read, Write, Seek}` access to SQL BLOBs. Note: This feature requires SQLite 3.7.4 or later. -* [`limits`](https://docs.rs/rusqlite/0.15.0/rusqlite/struct.Connection.html#method.limit) +* [`limits`](https://docs.rs/rusqlite/0.16.0/rusqlite/struct.Connection.html#method.limit) allows you to set and retrieve SQLite's per connection limits. -* `chrono` implements [`FromSql`](https://docs.rs/rusqlite/0.15.0/rusqlite/types/trait.FromSql.html) - and [`ToSql`](https://docs.rs/rusqlite/0.15.0/rusqlite/types/trait.ToSql.html) for various +* `chrono` implements [`FromSql`](https://docs.rs/rusqlite/0.16.0/rusqlite/types/trait.FromSql.html) + and [`ToSql`](https://docs.rs/rusqlite/0.16.0/rusqlite/types/trait.ToSql.html) for various types from the [`chrono` crate](https://crates.io/crates/chrono). -* `serde_json` implements [`FromSql`](https://docs.rs/rusqlite/0.15.0/rusqlite/types/trait.FromSql.html) - and [`ToSql`](https://docs.rs/rusqlite/0.15.0/rusqlite/types/trait.ToSql.html) for the +* `serde_json` implements [`FromSql`](https://docs.rs/rusqlite/0.16.0/rusqlite/types/trait.FromSql.html) + and [`ToSql`](https://docs.rs/rusqlite/0.16.0/rusqlite/types/trait.ToSql.html) for the `Value` type from the [`serde_json` crate](https://crates.io/crates/serde_json). * `bundled` uses a bundled version of sqlite3. This is a good option for cases where linking to sqlite3 is complicated, such as Windows. * `sqlcipher` looks for the SQLCipher library to link against instead of SQLite. This feature is mutually exclusive with `bundled`. @@ -115,11 +115,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.25.2 (as of `rusqlite` 0.15.0 / `libsqlite3-sys` - 0.10.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.26.0 (as of `rusqlite` 0.16.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: ``` [dependencies.rusqlite] - version = "0.15.0" + version = "0.16.0" features = ["bundled"] ``` * You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite