From 48a84a14407f14f914aee26f2a31a4c020b2b230 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Sat, 31 Dec 2016 00:39:19 -0500 Subject: [PATCH] Add Error changes to Changelog. --- Changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Changelog.md b/Changelog.md index 10a0f3f..bffa83f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,9 @@ and `query_row_named` now expects a `&Row` instead of a `Row`. The vast majority of calls to these functions will probably not need to change; see https://github.com/jgallagher/rusqlite/pull/184. +* BREAKING CHANGE: A few cases of the `Error` enum have sprouted additional information + (e.g., `FromSqlConversionFailure` now also includes the column index and the type returned + by SQLite). * Added `#[deprecated(since = "...", note = "...")]` flags (new in Rust 1.9 for libraries) to all deprecated APIs. * Added `query_row` convenience function to `Statement`.