Correctly fix the intermediate file format versions.

This commit is contained in:
Mike Auty
2019-08-31 14:24:22 +01:00
parent c47ead41b1
commit 0cb5ca995c
+3 -3
View File
@@ -482,7 +482,7 @@ class Version2Format(Version1Format):
class Version3Format(Version2Format):
"""Class for storing intermediate debugging data as objects and classes"""
version = (2, 0, 1)
version = (2, 1, 0)
def get_symbol(self, name: str) -> interfaces.symbols.SymbolInterface:
"""Returns the symbol given by the symbol name"""
@@ -532,7 +532,7 @@ class Version4Format(Version3Format):
class Version5Format(Version4Format):
"""Class for storing intermediate debugging data as objects and classes"""
version = (4, 0, 1)
version = (4, 1, 0)
def get_symbol(self, name: str) -> interfaces.symbols.SymbolInterface:
"""Returns the symbol given by the symbol name"""
@@ -568,4 +568,4 @@ class Version6Format(Version5Format):
class Version7Format(Version6Format):
"""Class for storing intermediate debugging data as objects and classes"""
version = (6, 0, 1)
version = (6, 1, 0)