From f5a15d062582e31d12281f59775b58ccc65964be Mon Sep 17 00:00:00 2001 From: "Paul M. Jones" Date: Thu, 2 Aug 2018 10:16:35 -0500 Subject: [PATCH] update for release 1.0.1 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc7dcf2..2215b79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 1.0.1 + +- The `Connection::new()` and `factory()` methods now instantiate via the `static` keyword instead of the class name, making the Connection class more amenable to extension. + +- The `Connection::perform()` method now binds `PDO::PARAM_BOOL` values as string '0' and string '1'; this addresses a not-a-bug-but-still-surprising behavior in PDO; cf. . + +- Updated docs. + ## 1.0.0 First stable release.