From a109a7f82422b5754310bf0f759c3cd5659c4ded Mon Sep 17 00:00:00 2001 From: Jason Robinson Date: Sun, 18 Feb 2024 15:55:56 +0200 Subject: [PATCH] Release v0.25.1 --- CHANGELOG.md | 2 +- docs/conf.py | 2 +- federation/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 615d045..23a514a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.25.1] - 2024-02-18 ### Fixed diff --git a/docs/conf.py b/docs/conf.py index 76f80e9..99ad137 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- from recommonmark.parser import CommonMarkParser -__version__ = "0.24.1" +__version__ = "0.25.1" # # Federation documentation build configuration file, created by diff --git a/federation/__init__.py b/federation/__init__.py index 9f3ec9f..90dd490 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.25.0" +__version__ = "0.25.1" PROTOCOLS = ( "activitypub",