Release 0.8.0 (#116)

This commit is contained in:
Brian J. Cardiff 2019-12-11 17:38:42 -03:00 committed by GitHub
parent e1832fc359
commit 7e83f8e26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## v0.8.0 (2019-12-11)
* Add `DB::Serializable`. ([#115](https://github.com/crystal-lang/crystal-db/pull/115), thanks @nickbclifford)
This release requires Crystal 0.25.0 or later.
## 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)

View File

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

View File

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