From 41f331eff43c2243a63f2826b9d7361133f91b01 Mon Sep 17 00:00:00 2001
From: Christine Ho <c.ho@webu.coop>
Date: Thu, 16 Sep 2021 16:12:43 +0200
Subject: [PATCH] add tbump setup

---
 tbump.toml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 tbump.toml

diff --git a/tbump.toml b/tbump.toml
new file mode 100644
index 0000000..ee32c99
--- /dev/null
+++ b/tbump.toml
@@ -0,0 +1,43 @@
+[version]
+current = "0.6.12"
+
+# Example of a semver regexp.
+# Make sure this matches current_version before
+# using tbump
+regex = '''
+  (?P<major>\d+)
+  \.
+  (?P<minor>\d+)
+  \.
+  (?P<patch>\d+)
+  (
+    -
+    (?P<channel>alpha|beta|rc)
+    \.
+    (?P<release>\d+)
+  )?
+  '''
+
+[git]
+message_template = "Bump to {new_version}"
+tag_template = "{new_version}"
+
+# For each file to patch, add a [[file]] config
+# section containing the path of the file, relative to the
+# tbump.toml location.
+[[file]]
+src = "newsbox/__init__.py"
+
+# You can specify a list of commands to
+# run after the files have been patched
+# and before the git commit is made
+
+#  [[before_commit]]
+#  name = "check changelog"
+#  cmd = "grep -q {new_version} Changelog.rst"
+
+# Or run some commands after the git tag and the branch
+# have been pushed:
+#  [[after_push]]
+#  name = "publish"
+#  cmd = "./publish.sh"
-- 
GitLab