Skip to content

Commit

Permalink
MAINT: Add tbump configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Aug 18, 2023
1 parent a5c01e4 commit 5f365a1
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/trigger_asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ jobs:
ref: master
wait_workflow: true
client_payload: '{"pr_number": "${{ github.event.client_payload.slash_command.args.named.pr_number }}"}'

46 changes: 46 additions & 0 deletions tbump.toml
Original file line number Diff line number Diff line change
@@ -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<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\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"

0 comments on commit 5f365a1

Please sign in to comment.