diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c71060d..9979f3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # splat Release Notes +### 0.21.5 + +* Fixed issue with Python 3.8 compatibility (oops) + ### 0.21.4 * New yaml option: `hasm_in_src_path` diff --git a/pyproject.toml b/pyproject.toml index 6d7fbc58..407dd331 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "splat64" # Should be synced with src/splat/__init__.py -version = "0.21.4" +version = "0.21.5" description = "A binary splitting tool to assist with decompilation and modding projects" readme = "README.md" license = {file = "LICENSE"} diff --git a/src/splat/__init__.py b/src/splat/__init__.py index 926fc9ec..90b6ddc4 100644 --- a/src/splat/__init__.py +++ b/src/splat/__init__.py @@ -3,7 +3,7 @@ __package_name__ = __name__ # Should be synced with pyproject.toml -__version_info__: Tuple[int, int, int] = (0, 21, 4) +__version_info__: Tuple[int, int, int] = (0, 21, 5) __version__ = ".".join(map(str, __version_info__)) __author__ = "ethteck" diff --git a/src/splat/segtypes/common/code.py b/src/splat/segtypes/common/code.py index efba54e5..591a75e7 100644 --- a/src/splat/segtypes/common/code.py +++ b/src/splat/segtypes/common/code.py @@ -1,9 +1,7 @@ from collections import OrderedDict -from typing import Dict, List, Optional, Tuple, Set, Type +from typing import OrderedDict, List, Optional, Type from ...util import log, options -from ...util.range import Range -from ...util.symbols import Symbol from .group import CommonSegGroup from ..segment import Segment, parse_segment_align