diff --git a/deploy/increase_version.py b/deploy/increase_version.py index ebff3865f..12977a8f5 100755 --- a/deploy/increase_version.py +++ b/deploy/increase_version.py @@ -82,10 +82,13 @@ def was_changed(self) -> bool: def increment_major(self) -> None: self.major += 1 + self.minor = 0 + self.patch = 0 self._changed = True def increment_minor(self) -> None: self.minor += 1 + self.patch = 0 self._changed = True def increment_patch(self) -> None: