Hello I am building a pyproject object and I have the following two sections
[tool.poetry]
version = "0.1.0"
[tool.commitizen]
version = "0.1.0"
As you can see poetry uses the version in its section and commitizen in its section, the question is how to can I set only one version and share between sections?
Thanks