diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index e0911d1..7b65f03 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 0 +#define RAB_VERSION_PATCH 1 #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 2098e00..d800667 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.0" +version = "1.5.1" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 552acf8..451fe56 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "rabbitizer" # Version should be synced with include/common/RabbitizerVersion.h -version = "1.5.0" +version = "1.5.1" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/rust/build.rs b/rust/build.rs index 12ea50f..088aaf8 100644 --- a/rust/build.rs +++ b/rust/build.rs @@ -1,3 +1,4 @@ fn main() { println!("cargo:rustc-link-search=../build/"); + println!("cargo:rustc-link-search=build/"); }