Release 0.5.1

This commit is contained in:
Brian J. Cardiff 2018-11-07 15:52:37 -03:00
parent 3820978820
commit 2b7892eb3a
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
## v0.5.1 (2017-11-07)
* Fix `QueryMethods#query_one?` handling no rows. ([#86](https://github.com/crystal-lang/crystal-db/pull/86), thanks @robdavid)
* Documentation improvements. ([#87](https://github.com/crystal-lang/crystal-db/pull/87), [#82](https://github.com/crystal-lang/crystal-db/pull/82), [#76](https://github.com/crystal-lang/crystal-db/pull/76), thanks @wontruefree, @Heaven31415, @vtambourine)
## v0.5.0 (2017-12-29) ## v0.5.0 (2017-12-29)
* Fix compatibility issues for crystal 0.24.0. No changes in the api. * Fix compatibility issues for crystal 0.24.0. No changes in the api.

View file

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

View file

@ -1,3 +1,3 @@
module DB module DB
VERSION = "0.5.0" VERSION = "0.5.1"
end end