Reverted placeholder.

This commit is contained in:
Sebastian Mohr 2025-10-14 10:21:47 +02:00 committed by Šarūnas Nejus
parent 4ea37b4579
commit ac31bee4ca
2 changed files with 5 additions and 1 deletions

View file

@ -170,6 +170,10 @@ Other changes:
UpdateVersionCallable = Callable[[str, Version], str]
FILENAME_AND_UPDATE_TEXT: list[tuple[Path, UpdateVersionCallable]] = [
(
PYPROJECT,
lambda text, new: re.sub(r"(?<=\nversion = )[^\n]+", f'"{new}"', text),
),
(CHANGELOG, update_changelog),
(BASE / "docs" / "conf.py", update_docs_config),
]

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "beets"
version = "0.0.0"
version = "2.5.0"
description = "music tagger and library organizer"
authors = ["Adrian Sampson <adrian@radbox.org>"]
maintainers = ["Serene-Arc"]