Skip to content

Commit db4763f

Browse files
committed
version bump
1 parent 4e07e32 commit db4763f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.32.4] - 2025-03-03
11+
1012
### Fixed
1113

1214
- `gpRelHack` fix:
@@ -1762,6 +1764,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17621764
- Version 1.0.0
17631765

17641766
[unreleased]: https://github.com/Decompollaborate/spimdisasm/compare/master...develop
1767+
[1.32.4]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.3...1.32.4
17651768
[1.32.3]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.2...1.32.3
17661769
[1.32.2]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.1...1.32.2
17671770
[1.32.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.0...1.32.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add
6969
this library with the following line:
7070

7171
```txt
72-
spimdisasm>=1.32.3,<2.0.0
72+
spimdisasm>=1.32.4,<2.0.0
7373
```
7474

7575
### Development version

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[project]
55
name = "spimdisasm"
66
# Version should be synced with spimdisasm/__init__.py
7-
version = "1.32.4-dev0"
7+
version = "1.32.4"
88
description = "MIPS disassembler"
99
readme = "README.md"
1010
license = {file = "LICENSE"}

spimdisasm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from __future__ import annotations
77

88
__version_info__: tuple[int, int, int] = (1, 32, 4)
9-
__version__ = ".".join(map(str, __version_info__)) + "-dev0"
9+
__version__ = ".".join(map(str, __version_info__))# + "-dev0"
1010
__author__ = "Decompollaborate"
1111

1212
from . import common as common

0 commit comments

Comments
 (0)