Skip to content
Snippets Groups Projects
Commit d25cea1b authored by David Byers's avatar David Byers
Browse files

Fix update-version and #release

parent 5145ce7f
No related branches found
No related tags found
No related merge requests found
Pipeline #34177 passed
......@@ -65,7 +65,7 @@ class Version:
return self
def _tuple(self):
return (self.major, self.minor, self.build, self.patch)
return (self.major, self.minor, self.patch, self.build)
def __lt__(self, other):
return self._tuple() < other._tuple()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment