Release 0.7.0 (#112)

This commit is contained in:
Brian J. Cardiff 2019-09-20 17:37:29 -03:00 committed by GitHub
parent b3898ae2a2
commit 2b95d69e68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
## v0.7.0 (2019-09-20)
* **(breaking-change)** `#exec`, `#query`, `#scalar` methods require named argument for array values ([#110](https://github.com/crystal-lang/crystal-db/pull/110), thanks @straight-shoota)
* Fix pool issues when creating simultaneous connections. ([#109](https://github.com/crystal-lang/crystal-db/pull/109), thanks @bcardiff)
* Fix compatibility issues for upcoming Crystal 0.31.0. ([#111](https://github.com/crystal-lang/crystal-db/pull/111), thanks @bcardiff)
* Added `DB::Pool#stats`. ([#109](https://github.com/crystal-lang/crystal-db/pull/109), thanks @bcardiff)
## v0.6.0 (2019-08-02)
* Fix compatibility issues for Crystal 0.30.0. ([#108](https://github.com/crystal-lang/crystal-db/pull/108), thanks @bcardiff)

View file

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

View file

@ -1,3 +1,3 @@
module DB
VERSION = "0.6.0"
VERSION = "0.7.0"
end