From 84985dbd840aaa65dc338760c9d5751b8b90e3cc Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Thu, 19 May 2016 20:32:57 -0500 Subject: [PATCH] Bump to 0.7.1 --- Cargo.toml | 2 +- Changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index be82e3f..70c22ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.7.0" +version = "0.7.1" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" diff --git a/Changelog.md b/Changelog.md index 9667c32..6c9e5f3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# Version 0.7.0 (2016-05-19) +# Version 0.7.1 (2016-05-19) * BREAKING CHANGE: `Rows` no longer implements `Iterator`. It still has a `next()` method, but the lifetime of the returned `Row` is now tied to the lifetime of the vending `Rows` object.