mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Release 0.10.0 (#136)
This commit is contained in:
parent
284145138f
commit
3163b4b65e
3 changed files with 11 additions and 3 deletions
10
CHANGELOG.md
10
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)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: db
|
||||
version: 0.9.0
|
||||
version: 0.10.0
|
||||
|
||||
authors:
|
||||
- Brian J. Cardiff <bcardiff@manas.tech>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module DB
|
||||
VERSION = "0.9.0"
|
||||
VERSION = "0.10.0"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue