diff --git a/Cargo.toml b/Cargo.toml index 34d6f9e..b296cf2 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.4" +version = "1.5.5" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 506d916..15ea44b 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 4 +#define RAB_VERSION_PATCH 5 #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 11e818d..ffab692 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.4" +version = "1.5.5" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md" diff --git a/rust/Makefile b/rust/Makefile index 6117ed5..132afcb 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -1,15 +1,5 @@ -# Build options can be changed by modifying the makefile or by building with 'make SETTING=value'. -DEBUG ?= 1 - - -ifeq ($(DEBUG),0) - CARGO_ARGS += --release -endif - - RS_TABLE_GEN := ../tools/rs_table_gen.sh - IINC := -I ../include TABLE_DIRS := $(shell find src -type d) @@ -20,8 +10,6 @@ TABLE_DEP_FILES := $(TABLE_GENERATED:%.rs=%.tablers.d) all: $(TABLE_GENERATED) - make -C .. - cargo build $(CARGO_ARGS) distclean: $(RM) -rf $(TABLE_GENERATED)