瀏覽代碼

Add releaser configuration.

Jelmer Vernooij 4 年之前
父節點
當前提交
0f4e915c97
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      releaser.conf

+ 14 - 0
releaser.conf

@@ -0,0 +1,14 @@
+name: "dulwich"
+news_file: "NEWS"
+pypi: "dulwich"
+timeout_days: 5
+update_version {
+  path: "setup.py"
+  match: "^dulwich_version_string = '(.*)'$"
+  new_line: "dulwich_version_string = '$VERSION'"
+}
+update_version {
+  path: "dulwich/__init__.py"
+  match: "^ __version__ = \((.*)\)$"
+  new_line: "__version__ = $TUPLED_VERSION"
+}