summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--releaser.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/releaser.conf b/releaser.conf
new file mode 100644
index 0000000..6135caf
--- /dev/null
+++ b/releaser.conf
@@ -0,0 +1,15 @@
+name: "python-fastimport"
+news_file: "NEWS"
+timeout_days: 5
+tag_name: "fastimport-$VERSION"
+verify_command: "make check"
+update_version {
+ path: "setup.py"
+ match: "^version = \".*\"$"
+ new_line: "version = \"$VERSION\""
+}
+update_version {
+ path: "fastimport/__init__.py"
+ match: "^__version__ = \((.*)\)$"
+ new_line: "__version__ = $TUPLED_VERSION"
+}