releaser.conf 395 B

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