zestsoftware / zest.releaser

Python software releasing made easy and repeatable
https://zestreleaser.readthedocs.io
GNU General Public License v2.0
198 stars 62 forks source link

Running fullrelease without input #300

Closed hgrecco closed 5 years ago

hgrecco commented 5 years ago

As noted here you can run fullrelease without input but the version must be ok. Would it be possible to add a commandline argument to specify the desired version?

mauritsvanrees commented 5 years ago

That does not sound like something we would want to support.

If it fits your usecase, you could maybe first run bumpversion --no-input --feature if you want to update the version to a feature release instead of a bugfix release. Then run fullrelease --no-input.

Otherwise, you could create an extension to suit your specific use case. See issue #291 for an idea.