From 893bae122036305fed60767ae84b69ba2db7f988 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Wed, 5 Apr 2017 14:34:06 -0400 Subject: [PATCH] Bump to 0.10.2. --- Cargo.toml | 2 +- Changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9555f56..36bd442 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.10.1" +version = "0.10.2" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" diff --git a/Changelog.md b/Changelog.md index 2bc3653..a19bf2e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# Version 0.10.2 (UPCOMING) +# Version 0.10.2 (2017-04-05) * Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys. * Adds `FromSql` and `ToSql` impls for `isize`. Documents why `usize` and `u64` are not included.