v6.4.0
Breaking change
If you are using tbump
with a pyproject.toml
to bump a project using poetry
,
you may have found that the version
key in [tool.poetry]
was implicitly bumped.
This was considered to be a bug, which means you now have to tell tbump
about poetry
explicitly:
# new
[[tool.tbump.file]]
src = "pyproject.toml"
search = 'version = "{current_version}"'
Bug fixes
- Fix #103: Invalid config: Key 'file' error using pyproject.toml, caused by an update in
tomlkit
- Fix #93: Do not patch version in
[tool.poetry]
implicitly
Misc
- Default development branch is now called
main
. - Make all
tbump
imports consistent - Fix compatibly with Python 3.10