-------------
* Added support for chaining operations to ``Cursor.execute()`` and
``Cursor.executemany()``. This allows one-liners such as
``cursor.execute("SELECT 42").fetchallnumpy()``.
* Right before a database connection is closed, any open transactions
are explicitly rolled back. This improves compatibility with ODBC drivers
that do not perform automatic rollbacks such as Microsoft's official
ODBC driver.
* Improved stability of turbodbc when facing errors while closing connections,
statements, and environments. In earlier versions, connection timeouts etc.
could have lead to the Python process's termination.
* Source distribution now contains license, readme, and changelog.