Release v1.2.0
First release of the async version of HappyBase!
The version number is the same because the API is almost identical
(albeit async) except for a few updates:
- Only Python 3.6+ will be supported (I like f-strings and ordered dictionaries,
sue me:P) Connection
andConnectionPool
objects can be used as context managers
(async and regular).- Explicitly closing non-context managed
Connection
andConnectionPool
objects is now required due the asyncio event loop being mostly unavailable
during del. Connection.create_table()
now returns the Table instance.- Support for the framed transport and compact protocol have been dropped until
thriftpy2.contrib.aio
supports them as well.