Release v0.22.0

merge-requests/167/merge v0.22.0
Jason Robinson 2021-08-15 21:26:59 +03:00
rodzic 0291d9dd98
commit 01357aacb0
3 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -1,10 +1,15 @@
# Changelog
## [unreleased]
## [0.22.0] - 2021-08-15
### Added
* WIP Matrix support over an appservice.
* Work in progress Matrix support over an appservice 😻
Currently requires Django support. Tested on Dendrite and up to version v0.3.11 only. Features so far:
* Register local users on the configured Matrix server.
* Post local user public posts into Matrix side to their profile timeline rooms and to each hashtag room.
### Fixed

Wyświetl plik

@ -7,7 +7,7 @@ from federation.exceptions import NoSuitableProtocolFoundError
if TYPE_CHECKING:
from federation.types import RequestType
__version__ = "0.22.0-dev"
__version__ = "0.22.0"
PROTOCOLS = (
"activitypub",

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup, find_packages
from federation import __version__
description = 'Python library to abstract social web federation protocols like ActivityPub and Diaspora.'
description = 'Python library to abstract social web federation protocols like ActivityPub, Matrix and Diaspora.'
def get_long_description():