releaser.conf 454 B

12345678910111213141516
  1. # See https://github.com/jelmer/releaser
  2. news_file: "NEWS"
  3. timeout_days: 5
  4. tag_name: "dulwich-$VERSION"
  5. verify_command: "flake8 && make check"
  6. github_url: "https://github.com/dulwich/dulwich"
  7. update_version {
  8. path: "setup.py"
  9. match: "^dulwich_version_string = '(.*)'$"
  10. new_line: "dulwich_version_string = '$VERSION'"
  11. }
  12. update_version {
  13. path: "dulwich/__init__.py"
  14. match: "^__version__ = \((.*)\)$"
  15. new_line: "__version__ = $TUPLED_VERSION"
  16. }