Merge branch 'master' into ld-signatures

ld-signatures
Alain St-Denis 2023-03-25 07:12:31 -04:00
commit 2f4a3e9c16
4 zmienionych plików z 27 dodań i 3 usunięć

18
.readthedocs.yaml 100644
Wyświetl plik

@ -0,0 +1,18 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.9"
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
formats: all

Wyświetl plik

@ -1,6 +1,12 @@
# Changelog
## [0.24] - unreleased
## [0.24.1] - 2023-03-18
### Fixed
* Fix documentation builds
## [0.24.0] - 2023-03-18
### Added

Wyświetl plik

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from recommonmark.parser import CommonMarkParser
from federation import __version__
__version__ = "0.24.1"
#
# Federation documentation build configuration file, created by

Wyświetl plik

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