diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bc03d2..e7712c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ -## Not released +## v0.3.0 (2016-12-14) * Add support for non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25) * Add support for transactions & nested transactions. [#27](https://github.com/crystal-lang/crystal-db/pull/27) +* Add `Bool` and `Time` to `DB::Any`. + ## v0.2.2 (2016-12-06) This release requires crystal 0.20.1 diff --git a/README.md b/README.md index 6bd13c5..d225050 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ end Issues not yet addressed - [x] Support non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25) -- [ ] Time data type. crystal-mysql & crystal-sqlite3 support Time already. +- [x] Time data type. (implementation details depends on actual drivers) - [x] Data type extensibility. Allow each driver to extend the data types allowed. - [x] Transactions & nested transactions. [#27](https://github.com/crystal-lang/crystal-db/pull/27) - [x] Connection pool.