From 593bffc2f9d308e9a19ad3e4611d42ca464ff24d Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Wed, 12 Feb 2025 11:26:30 -0300 Subject: [PATCH] version bump --- CHANGELOG.md | 3 +++ README.md | 2 +- spimdisasm/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 976735a7..f24569ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 3ff9333f..73c5624b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/spimdisasm/__init__.py b/spimdisasm/__init__.py index 8288dbfc..5631f59a 100644 --- a/spimdisasm/__init__.py +++ b/spimdisasm/__init__.py @@ -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