(version: str, write_out: bool = False)
| 120 | |
| 121 | |
| 122 | def changelog(version: str, write_out: bool = False) -> None: |
| 123 | addopts = [] if write_out else ["--draft"] |
| 124 | check_call(["towncrier", "build", "--yes", "--version", version, *addopts]) |
| 125 | |
| 126 | |
| 127 | def main() -> None: |
no test coverage detected
searching dependent graphs…