From df0ec5723f7778c3ec9c6572b906580d41abd8b2 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Sat, 22 Oct 2016 20:05:15 -0300 Subject: [PATCH] because it's never too late for a changelog --- CHANGELOG.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1b9ca8e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# v0.2.0 (2016-10-20) + +## Fixed + +* Release DB connection if an exception occurs during execution of a query (thanks @ggiraldez) + +# ~~v0.1.1 (2016-09-28)~~ [YANKED] + +This release requires crystal 0.19.2 + +Note: v0.1.1 is yanked since is incompatible with v0.1.0 [more](https://github.com/crystal-lang/crystal-mysql/issues/10). + +## Added + +* Connection pool. `DB.open` works with a underlying connection pool. Use `Database#using_connection` to ensure the same connection is been used across multiple statements. [more](https://github.com/crystal-lang/crystal-db/pull/12) + +* Mappings. JSON/YAML-like mapping macros (thanks @spalladino) [more](https://github.com/crystal-lang/crystal-db/pull/2) + +## Changed + +* Require ResultSet implementors to just implement `read`, optionally implementing `read(T.class)`. + +# v0.1.0 (2016-06-24) + +* Initial release