mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 09:04:33 +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]
|
UpdateVersionCallable = Callable[[str, Version], str]
|
||||||
FILENAME_AND_UPDATE_TEXT: list[tuple[Path, UpdateVersionCallable]] = [
|
FILENAME_AND_UPDATE_TEXT: list[tuple[Path, UpdateVersionCallable]] = [
|
||||||
|
(
|
||||||
|
PYPROJECT,
|
||||||
|
lambda text, new: re.sub(r"(?<=\nversion = )[^\n]+", f'"{new}"', text),
|
||||||
|
),
|
||||||
(CHANGELOG, update_changelog),
|
(CHANGELOG, update_changelog),
|
||||||
(BASE / "docs" / "conf.py", update_docs_config),
|
(BASE / "docs" / "conf.py", update_docs_config),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "beets"
|
name = "beets"
|
||||||
version = "0.0.0"
|
version = "2.5.0"
|
||||||
description = "music tagger and library organizer"
|
description = "music tagger and library organizer"
|
||||||
authors = ["Adrian Sampson <adrian@radbox.org>"]
|
authors = ["Adrian Sampson <adrian@radbox.org>"]
|
||||||
maintainers = ["Serene-Arc"]
|
maintainers = ["Serene-Arc"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue