From e0592e17d006b3f32bdec8baaed6a31ffbc7ade1 Mon Sep 17 00:00:00 2001 From: Jason Robinson Date: Sat, 6 Jan 2024 01:32:31 +0200 Subject: [PATCH] Release 0.25.0 --- CHANGELOG.md | 4 +--- federation/__init__.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 834fe0e..c4a6fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.25] - Unreleased +## [0.25.0] - 2024-01-06 ### Added @@ -41,8 +41,6 @@ * Handle gotosocial reply collections. -* - ### Fixed * Inbound AP share retractions (undo announce) were deserialized as a `base.Retraction` class, which would diff --git a/federation/__init__.py b/federation/__init__.py index 665bfc2..9f3ec9f 100644 --- a/federation/__init__.py +++ b/federation/__init__.py @@ -7,7 +7,7 @@ from federation.exceptions import NoSuitableProtocolFoundError if TYPE_CHECKING: from federation.types import RequestType -__version__ = "0.24.1" +__version__ = "0.25.0" PROTOCOLS = ( "activitypub",