From 0a35f4bb1e3cec3f60130ea2a1161a7dfafcadd4 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Fri, 3 Mar 2017 13:07:27 -0500 Subject: [PATCH] Version bumps to use new bundled SQLite. --- Cargo.toml | 4 ++-- Changelog.md | 4 ++++ libsqlite3-sys/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9f66c8a..694d81e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.10.0" +version = "0.10.1" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" @@ -40,7 +40,7 @@ regex = "0.2" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.7.0" +version = "0.7" [[test]] name = "config_log" diff --git a/Changelog.md b/Changelog.md index 16fd22b..712a22b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# Version 0.10.1 (UPCOMING) + +* Updates the `bundled` SQLite version to 3.17.0. + # Version 0.10.0 (2017-02-28) * Re-export the `ErrorCode` enum from `libsqlite3-sys`. diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 3527591..6483ddb 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.7.0" +version = "0.7.1" authors = ["John Gallagher "] repository = "https://github.com/jgallagher/rusqlite" description = "Native bindings to the libsqlite3 library"