* LMDB 0.9.13 is bundled along with extra fixes from upstream Git.
* Environment.__enter__() and __exit__() are implemented, allowing
Environments to behave like context managers.
* Cursor.close(), __enter__() and __exit__() are implemented, allowing Cursors
to be explicitly closed. In CFFI this mechanism *must* be used when many
cursors are used within a single transaction, otherwise a resource leak will
occur.
* Dependency tracking in CFFI is now much faster, especially on PyPy, however
at a cost: Cursor use must always be wrapped in a context manager, or
.close() must be manually invoked for discarded Cursors when the parent
transaction is long lived.
* Fixed crash in CFFI Cursor.putmulti().