mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
disallow --release=dev
dev releases don't work like other kinds of releases, they would have to be implemented as a different kind of part.
This commit is contained in:
parent
e2b274a7bf
commit
4c8c9b128a
3 changed files with 2 additions and 3 deletions
|
|
@ -69,7 +69,7 @@ def _configure_logging(verbose: int = 0) -> None:
|
|||
logger.debug("Logging configured.")
|
||||
|
||||
|
||||
VALID_RELEASE_VALUES = ("alpha", "beta", "dev", "rc", "post", "final")
|
||||
VALID_RELEASE_VALUES = ("alpha", "beta", "rc", "post", "final")
|
||||
|
||||
|
||||
_current_date = dt.date.today().isoformat()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue