-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output missing for pyproject.toml
#158
Comments
I can't reproduce the bug here ... Do you have some code you could share ? |
The output is as the following:
I was expecting the diff of |
Oh I got it - we have a test for this, but it looks like that: # same as in your project
[[tool.tbump.file]]
src = "foo/__init__.py"
search = '__version__ = "{current_version}"'
# but here we also add pyproject.toml explicitly:
[[tool.tbump.file]]
src = "pyproject.toml"
search = 'version = "{current_version}"' So - your issue is valid and asks a good question - I was thinking that the message "Would update current version in pyproject.toml" was enough, but I'm obviously biased ;) What do you think? |
pyproject.toml
pyproject.toml
Note: this is actually a duplicate of #145, so closing this one. |
Hi, I'm using
pyproject.toml
for configuration, and it seems like the output message does not include the change of this file. I guess it works fine for the case oftbump.toml
so there could be an easy fix?The text was updated successfully, but these errors were encountered: