update changelog. improve formatting

This commit is contained in:
Brian J. Cardiff 2016-10-22 21:52:15 -03:00
parent df0ec5723f
commit 79ec638de4

View file

@ -1,25 +1,23 @@
# v0.2.0 (2016-10-20)
## (unreleased)
## Fixed
* Fixed allow new connections right away if pool can be increased
* Release DB connection if an exception occurs during execution of a query (thanks @ggiraldez)
## v0.2.0 (2016-10-20)
# ~~v0.1.1 (2016-09-28)~~ [YANKED]
* Fixed release DB connection if an exception occurs during execution of a query (thanks @ggiraldez)
## ~~v0.1.1 (2016-09-28)~~ [YANKED]
This release requires crystal 0.19.2
Note: v0.1.1 is yanked since is incompatible with v0.1.0 [more](https://github.com/crystal-lang/crystal-mysql/issues/10).
## Added
* Added connection pool. `DB.open` works with a underlying connection pool. Use `Database#using_connection` to ensure the same connection is been used across multiple statements. [more](https://github.com/crystal-lang/crystal-db/pull/12)
* Connection pool. `DB.open` works with a underlying connection pool. Use `Database#using_connection` to ensure the same connection is been used across multiple statements. [more](https://github.com/crystal-lang/crystal-db/pull/12)
* Added mappings. JSON/YAML-like mapping macros (thanks @spalladino) [more](https://github.com/crystal-lang/crystal-db/pull/2)
* Mappings. JSON/YAML-like mapping macros (thanks @spalladino) [more](https://github.com/crystal-lang/crystal-db/pull/2)
* Changed require ResultSet implementors to just implement `read`, optionally implementing `read(T.class)`.
## Changed
* Require ResultSet implementors to just implement `read`, optionally implementing `read(T.class)`.
# v0.1.0 (2016-06-24)
## v0.1.0 (2016-06-24)
* Initial release