---------------
Released on October 8th 2019
- You can now use original connection parameters of the DB API adapter
which will be passed to the adapters ``connect`` function.
Example:
``db = Database('mysql://...', sqldir, charset='utf8')``
will result in
``MySQLdb.connect(host='...', db='...', charset='utf8')``
Where ``charset`` is part of MySQLdb's API and not part of quma's.
- Objects which are passed as carrier are not altered anymore. Previously
carriers had been added an attribute called ``__quma_conn__``.
- Mako templates are now set up using mako's ``TemplateLookup`` which
is initialized with the sql directories.
- Add method ``.query()`` to ``Cursor``.
- Add "prepared statements" section to docs.