Release 0.9.0 (#126)

This commit is contained in:
Brian J. Cardiff 2020-04-06 20:11:41 -03:00 committed by GitHub
parent 511fe20253
commit ed686ad301
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.9.0 (2019-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)
* Raise `DB::NoResultsError` when trying to get data from an empty result ([#121](https://github.com/crystal-lang/crystal-db/pull/121), [#125](https://github.com/crystal-lang/crystal-db/pull/125), thanks @jwoertink, @bcardiff)
## v0.8.0 (2019-12-11)
* Add `DB::Serializable`. ([#115](https://github.com/crystal-lang/crystal-db/pull/115), thanks @nickbclifford)

View File

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

View File

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