Add Statement::query_row note to Changelog.

This commit is contained in:
John Gallagher 2016-12-31 00:04:23 -05:00
parent bc71c58387
commit ff311ec29a

View File

@ -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.