From cbec045dceae01e78e2d0fc2328750241f153675 Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Wed, 25 Oct 2023 21:24:53 +0200 Subject: add pyproject.toml file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- pyproject.toml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fe2a6e7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[tool.tbump.version] +current = "2.1.0" +regex = ''' + (?P\d+) + \. + (?P\d+) + \. + (?P\d+) + ''' + +[tool.tbump.git] +message_template = "bump to {new_version}" +tag_template = "{new_version}" + +[[tool.tbump.file]] +src = "./VERSION" +search = "{current_version}" + +[[tool.tbump.file]] +src = "./VERSION" +search = "{current_version}" + +[[tool.tbump.file]] +src = "./ebuild-snippets.el" +search = ";; Version: {current_version}" + +[[tool.tbump.file]] +src = "./ebuild-snippets.el" +search = "defconst ebuild-snippets-version \"{current_version}\"" + +[[tool.tbump.before_commit]] +name = "execute make all" +cmd = "make all" -- cgit v1.2.3-65-gdbad