Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Feb 12, 2025
1 parent 57674ef commit 593bffc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.32.2] - 2025-02-12

### Fixed

- Fix to avoid incorrectly inferring the symbol's type if the given symbol is
Expand Down Expand Up @@ -1749,6 +1751,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.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
[1.31.3]: https://github.com/Decompollaborate/spimdisasm/compare/1.31.2...1.31.3
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.1,<2.0.0
spimdisasm>=1.32.2,<2.0.0
```

### Development version
Expand Down
2 changes: 1 addition & 1 deletion spimdisasm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

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

from . import common as common
Expand Down

0 comments on commit 593bffc

Please sign in to comment.