mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Reverted placeholder.
This commit is contained in:
parent
4ea37b4579
commit
ac31bee4ca
2 changed files with 5 additions and 1 deletions
|
|
@ -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),
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue