version bump

This commit is contained in:
angie 2025-02-06 16:26:46 -03:00
parent cecc302373
commit 9ae964d225
6 changed files with 8 additions and 5 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.12.6] - 2025-02-06
### Fixed
- R5900: Fix decoding the `imm5` operand of the `viaddi` instruction as a signed
@ -707,6 +709,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First version
[unreleased]: https://github.com/Decompollaborate/rabbitizer/compare/master...develop
[1.12.6]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.5...1.12.6
[1.12.5]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.4...1.12.5
[1.12.4]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.3...1.12.4
[1.12.3]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.2...1.12.3

2
Cargo.lock generated
View File

@ -102,7 +102,7 @@ dependencies = [
[[package]]
name = "rabbitizer"
version = "1.12.5"
version = "1.12.6"
dependencies = [
"cc",
"glob",

View File

@ -4,7 +4,7 @@
[package]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.12.5"
version = "1.12.6"
edition = "2021"
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
description = "MIPS instruction decoder"

View File

@ -109,7 +109,7 @@ cargo add rabbitizer
Or you can add it manually to your `Cargo.toml`:
```toml
rabbitizer = "1.12.5"
rabbitizer = "1.12.6"
```
See this crate at <https://crates.io/crates/rabbitizer>.

View File

@ -14,7 +14,7 @@ extern "C" {
// Header version
#define RAB_VERSION_MAJOR 1
#define RAB_VERSION_MINOR 12
#define RAB_VERSION_PATCH 5
#define RAB_VERSION_PATCH 6
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH)

View File

@ -4,7 +4,7 @@
[project]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.12.5"
version = "1.12.6"
description = "MIPS instruction decoder"
# license = "MIT"
readme = "README.md"