diff --git a/CHANGELOG.md b/CHANGELOG.md index ab88e9f..45af064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.8.3] - 2024-01-28 + +### Fixed + +- Fix Windows issue where jumptables where not properly identified. + - Caused because of an issue on `RegistersTracker.getJrInfo` not using the + correct type width for the return value on the Python binding. + ## [1.8.2] - 2024-01-28 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 3884c8b..93c5be2 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.8.2" +version = "1.8.3" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 8b7ce05..7a8f7d6 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ cargo add rabbitizer Or you can add it manually to your `Cargo.toml`: ```toml -rabbitizer = "1.8.2" +rabbitizer = "1.8.3" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index b57e9f1..6cad1a0 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 8 -#define RAB_VERSION_PATCH 2 +#define RAB_VERSION_PATCH 3 #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 a84e3c6..3b29fca 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.8.2" +version = "1.8.3" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"