bump version 0.4.1. Release notes.

This commit is contained in:
Brian J. Cardiff 2017-04-10 13:45:24 -03:00
parent 39e17f82ca
commit 912113d7fb
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## v0.4.1 (2017-04-10)
* Add spec helper for drivers. [#48](https://github.com/crystal-lang/crystal-db/pull/48)
* Add `#query_each`. [#18](https://github.com/crystal-lang/crystal-db/issues/18)
* Fix `#read(T.class)` to deal better with unhandled types.
## v0.4.0 (2017-03-20)
* Add `DB.connect` to create non pooled connections

View File

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

View File

@ -1,3 +1,3 @@
module DB
VERSION = "0.4.0"
VERSION = "0.4.1"
end