From bd456028644853f852f5adfe053142e6ad885e52 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Wed, 30 Sep 2020 10:37:37 -0300 Subject: [PATCH] Release 0.10.0 (#136) --- CHANGELOG.md | 10 +++++++++- shard.yml | 2 +- src/db/version.cr | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7464a7..4bca529 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -## v0.9.0 (2019-04-06) +## v0.10.0 (2020-09-30) + +* Fix mutex deadlock in setup_connection. ([#128](https://github.com/crystal-lang/crystal-db/pull/128), thanks @straight-shoota) +* Add logging for executing queries. ([#134](https://github.com/crystal-lang/crystal-db/pull/134), thanks @bcardiff) +* Allow `DB::Pool` to be used a generic connection pool. ([#131](https://github.com/crystal-lang/crystal-db/pull/131), thanks @jgaskins) + +This release requires Crystal 0.35.0 or later. + +## v0.9.0 (2020-04-06) * Fix compatibility issues for Crystal 0.34.0. ([#124](https://github.com/crystal-lang/crystal-db/pull/124), thanks @bcardiff) * Fix readme sample. ([#117](https://github.com/crystal-lang/crystal-db/pull/117), thanks @bcardiff) diff --git a/shard.yml b/shard.yml index a0aabba..b4917a2 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: db -version: 0.9.0 +version: 0.10.0 authors: - Brian J. Cardiff diff --git a/src/db/version.cr b/src/db/version.cr index 3a8c922..6157155 100644 --- a/src/db/version.cr +++ b/src/db/version.cr @@ -1,3 +1,3 @@ module DB - VERSION = "0.9.0" + VERSION = "0.10.0" end