update readme and changelog

This commit is contained in:
Brian J. Cardiff 2016-12-14 15:21:33 -03:00
parent 4e238f655f
commit 683e020b85
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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.