From 399c708c4611ea9195ea2bedfd0c78d87ca8b16c Mon Sep 17 00:00:00 2001 From: angie Date: Sun, 30 Apr 2023 12:37:02 -0400 Subject: [PATCH] version bump --- Cargo.toml | 2 +- include/common/RabbitizerVersion.h | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bb1e71f..ee3556e 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.6.2" +version = "1.7.0" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 0cd57eb..e5b7249 100644 --- a/include/common/RabbitizerVersion.h +++ b/include/common/RabbitizerVersion.h @@ -13,8 +13,8 @@ extern "C" { // Header version #define RAB_VERSION_MAJOR 1 -#define RAB_VERSION_MINOR 6 -#define RAB_VERSION_PATCH 2 +#define RAB_VERSION_MINOR 7 +#define RAB_VERSION_PATCH 0 #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 57ebcf6..2338e41 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.6.2" +version = "1.7.0" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"