diff --git a/.github/workflows/trigger_asv.yml b/.github/workflows/trigger_asv.yml index 61f7097..3a96b65 100644 --- a/.github/workflows/trigger_asv.yml +++ b/.github/workflows/trigger_asv.yml @@ -30,4 +30,3 @@ jobs: ref: master wait_workflow: true client_payload: '{"pr_number": "${{ github.event.client_payload.slash_command.args.named.pr_number }}"}' - diff --git a/tbump.toml b/tbump.toml new file mode 100644 index 0000000..097a5e3 --- /dev/null +++ b/tbump.toml @@ -0,0 +1,46 @@ +# Uncomment this if your project is hosted on GitHub: +github_url = "https://github.com/airspeed-velocity/asv_runner/" + +[version] +current = "0.0.6" + +# Example of a semver regexp. +# Make sure this matches current_version before +# using tbump +regex = ''' + (?P\d+) + \. + (?P\d+) + \. + (?P\d+) + ''' + +[git] +message_template = "MAINT: Bump version to v{new_version}" +tag_template = "v{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 = "pyproject.toml" +[[file]] +src = "docs/source/conf.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 = "pre-commit" +cmd = "pipx run pre-commit run -a" + +# [[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"