version bump

This commit is contained in:
Angie 2022-12-18 19:58:43 -03:00
parent 6102f2cf7d
commit 3ab315c5ab
4 changed files with 3 additions and 15 deletions

View File

@ -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 <angheloalf95@gmail.com>"]
description = "MIPS instruction decoder"

View File

@ -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)

View File

@ -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"

View File

@ -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)