Release 0.10.0 (#136)

This commit is contained in:
Brian J. Cardiff 2020-09-30 10:37:37 -03:00 committed by GitHub
parent 284145138f
commit bd45602864
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View File

@ -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)

View File

@ -1,5 +1,5 @@
name: db
version: 0.9.0
version: 0.10.0
authors:
- Brian J. Cardiff <bcardiff@manas.tech>

View File

@ -1,3 +1,3 @@
module DB
VERSION = "0.9.0"
VERSION = "0.10.0"
end