From 1950158c87ed1874b30a5988d783537358fac594 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Thu, 19 May 2016 20:38:17 -0500 Subject: [PATCH] Bump to 0.7.2 --- Cargo.toml | 2 +- Changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 70c22ad..df70e47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.7.1" +version = "0.7.2" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" diff --git a/Changelog.md b/Changelog.md index 6c9e5f3..358d93f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# Version 0.7.1 (2016-05-19) +# Version 0.7.2 (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.