Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Jan 20, 2024
1 parent 2f4ca7b commit 143a8f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"}
Expand Down
2 changes: 1 addition & 1 deletion src/splat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 1 addition & 3 deletions src/splat/segtypes/common/code.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 143a8f1

Please sign in to comment.