Skip to content

Commit bd06768

Browse files
committed
Version bump
1 parent b7e29be commit bd06768

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# splat Release Notes
22

3+
4+
### 0.38.1
5+
6+
* Fix `bss_size` being required for parent segments that contain `.bss` sections.
7+
38
### 0.38.0
49

510
* New symbol attribute: `use_non_matching_label`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The brackets corresponds to the optional dependencies to install while installin
2121
If you use a `requirements.txt` file in your repository, then you can add this library with the following line:
2222

2323
```txt
24-
splat64[mips]>=0.38.0,<1.0.0
24+
splat64[mips]>=0.38.1,<1.0.0
2525
```
2626

2727
### Optional dependencies

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "splat64"
33
# Should be synced with src/splat/__init__.py
4-
version = "0.38.0"
4+
version = "0.38.1"
55
description = "A binary splitting tool to assist with decompilation and modding projects"
66
readme = "README.md"
77
license = {file = "LICENSE"}

src/splat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__package_name__ = __name__
22

33
# Should be synced with pyproject.toml
4-
__version__ = "0.38.0"
4+
__version__ = "0.38.1"
55
__author__ = "ethteck"
66

77
from . import util as util

0 commit comments

Comments
 (0)