diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ff6a48..6a892c5 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.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 diff --git a/Cargo.lock b/Cargo.lock index 22a1358..8854ff8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "rabbitizer" -version = "1.12.5" +version = "1.12.6" dependencies = [ "cc", "glob", diff --git a/Cargo.toml b/Cargo.toml index d27d9cc..6af08e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 567c82e..b3f1894 100644 --- a/README.md +++ b/README.md @@ -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 . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 6ce10bc..ccd7487 100644 --- a/include/common/RabbitizerVersion.h +++ b/include/common/RabbitizerVersion.h @@ -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) diff --git a/pyproject.toml b/pyproject.toml index af2a401..55b73ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"