update readme/changelog

This commit is contained in:
Brian J. Cardiff 2016-12-14 12:25:32 -03:00
parent 8a1824ac23
commit ddd04da915
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## Not released
* 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)
## v0.2.2 (2016-12-06)
This release requires crystal 0.20.1

View file

@ -55,10 +55,10 @@ end
Issues not yet addressed
- [ ] Support non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25)
- [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] Data type extensibility. Allow each driver to extend the data types allowed.
- [ ] Transactions.
- [x] Transactions & nested transactions. [#27](https://github.com/crystal-lang/crystal-db/pull/27)
- [x] Connection pool.
- [ ] Direct access to `IO` to avoid memory allocation for blobs.