diff --git a/CHANGELOG.md b/CHANGELOG.md index e76427a..67f2447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.4.3 (2017-11-07) + +* Fix connections were not released when building invalid statements. (see [#65](https://github.com/crystal-lang/crystal-db/pull/65), thanks @crisward) +* Fix some exceptions were not deriving from `DB::Error`. (see [#70](https://github.com/crystal-lang/crystal-db/pull/70), thanks @exts) + ## v0.4.2 (2017-04-21) * Fix compatibility issues for crystal 0.22.0 diff --git a/shard.yml b/shard.yml index d315a7c..501cf5b 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: db -version: 0.4.2 +version: 0.4.3 authors: - Brian J. Cardiff diff --git a/src/db/version.cr b/src/db/version.cr index bf072ee..d077c59 100644 --- a/src/db/version.cr +++ b/src/db/version.cr @@ -1,3 +1,3 @@ module DB - VERSION = "0.4.2" + VERSION = "0.4.3" end