diff --git a/Cargo.toml b/Cargo.toml index d951b70..784dcf8 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.5.7" +version = "1.5.8" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 25d975f..cf80255 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this crate to your `Cargo.toml` via: ```toml [build] -rabbitizer = "1.5.5" +rabbitizer = "1.5.8" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index cb00404..de2cd7d 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 5 -#define RAB_VERSION_PATCH 7 +#define RAB_VERSION_PATCH 8 #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 fadcb45..cbf54a9 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.5.7" +version = "1.5.8" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"