From ff311ec29ab26072ebeb29045beaee6e2d3365b1 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Sat, 31 Dec 2016 00:04:23 -0500 Subject: [PATCH] Add Statement::query_row note to Changelog. --- Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.md b/Changelog.md index 7e1d231..10a0f3f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,7 @@ https://github.com/jgallagher/rusqlite/pull/184. * Added `#[deprecated(since = "...", note = "...")]` flags (new in Rust 1.9 for libraries) to all deprecated APIs. +* Added `query_row` convenience function to `Statement`. * Fixed a bug where using cached prepared statements resulted in attempting to close a connection failing with `DatabaseBusy`; see https://github.com/jgallagher/rusqlite/issues/186.