Bump version to 0.3.0

This commit is contained in:
Tulir Asokan 2022-03-28 17:28:37 +03:00
parent cecda7c32b
commit 1932ff9995
2 changed files with 5 additions and 3 deletions

View File

@ -1,15 +1,17 @@
# v0.3.0 (unreleased) # v0.3.0 (2022-03-28)
* Switched main maubot database to asyncpg/aiosqlite. * Switched main maubot database to asyncpg/aiosqlite.
* Using the same SQLite database for crypto is now safe again. * Using the same SQLite database for crypto is now safe again.
* Added support for asyncpg/aiosqlite for plugin databases. * Added support for asyncpg/aiosqlite for plugin databases.
* There are some [basic docs](https://docs.mau.fi/maubot/dev/database/index.html) * There are some [basic docs](https://docs.mau.fi/maubot/dev/database/index.html)
for the new system. and [a simple example](./examples/database) for the new system.
* The old SQLAlchemy system is now deprecated, but will be preserved for * The old SQLAlchemy system is now deprecated, but will be preserved for
backwards-compatibility until most plugins have updated. backwards-compatibility until most plugins have updated.
* Started enforcing minimum maubot version in plugins. * Started enforcing minimum maubot version in plugins.
* Trying to upload a plugin where the specified version is higher than the * Trying to upload a plugin where the specified version is higher than the
running maubot version will fail. running maubot version will fail.
* Fixed bug where uploading a plugin twice, deleting it and trying to upload
again would fail.
* Updated Docker image to Alpine 3.15. * Updated Docker image to Alpine 3.15.
* Formatted all code using [black](https://github.com/psf/black) * Formatted all code using [black](https://github.com/psf/black)
and [isort](https://github.com/PyCQA/isort). and [isort](https://github.com/PyCQA/isort).

View File

@ -1 +1 @@
__version__ = "0.3.0+dev" __version__ = "0.3.0"