From 60f7bddacc3c5d0064d6a5c371d774101dc11dea Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Thu, 26 May 2016 00:16:07 -0400 Subject: [PATCH] Add ToSql breaking change note to Changelog --- Changelog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changelog.md b/Changelog.md index 233a58b..ed9b14d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,6 +3,8 @@ * BREAKING CHANGE: The `FromSql` trait has been redesigned. It now requires a single, safe method instead of the previous definition which required implementing one or two unsafe methods. +* BREAKING CHANGE: The `ToSql` trait has been redesigned. It can now be implemented without + `unsafe`, and implementors can choose to return either borrowed or owned results. # Version 0.7.2 (2016-05-19)