Skip to content

Commit

Permalink
Merge pull request #184 from Decompollaborate/develop
Browse files Browse the repository at this point in the history
1.32.3
  • Loading branch information
AngheloAlf authored Feb 18, 2025
2 parents bb505bc + 9106f1d commit 7fb2134
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.32.3] - 2025-02-18

### Fixed

- Avoid emitting `Handwritten function` comment when comments are disabled.

## [1.32.2] - 2025-02-12

### Fixed
Expand Down Expand Up @@ -1751,6 +1757,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Version 1.0.0

[unreleased]: https://github.com/Decompollaborate/spimdisasm/compare/master...develop
[1.32.3]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.2...1.32.3
[1.32.2]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.1...1.32.2
[1.32.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.32.0...1.32.1
[1.32.0]: https://github.com/Decompollaborate/spimdisasm/compare/1.31.3...1.32.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add
this library with the following line:

```txt
spimdisasm>=1.32.2,<2.0.0
spimdisasm>=1.32.3,<2.0.0
```

### Development version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[project]
name = "spimdisasm"
# Version should be synced with spimdisasm/__init__.py
version = "1.32.2"
version = "1.32.3"
description = "MIPS disassembler"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion spimdisasm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import annotations

__version_info__: tuple[int, int, int] = (1, 32, 2)
__version_info__: tuple[int, int, int] = (1, 32, 3)
__version__ = ".".join(map(str, __version_info__))# + "-dev0"
__author__ = "Decompollaborate"

Expand Down
2 changes: 1 addition & 1 deletion spimdisasm/mips/symbols/MipsSymbolFunction.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def disassemble(self, migrate: bool=False, useGlobalLabel: bool=True, isSplitted
output += self.contextSym.getReferenceeSymbols()
output += self.getPrevAlignDirective(0)

if self.isLikelyHandwritten:
if self.isLikelyHandwritten and common.GlobalConfig.ASM_COMMENT:
if not self.isRsp:
# RSP functions are always handwritten, so this is redundant
output += "/* Handwritten function */" + common.GlobalConfig.LINE_ENDS
Expand Down

0 comments on commit 7fb2134

Please sign in to comment.