diff --git a/Cargo.toml b/Cargo.toml index 784dcf8..b6b810c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ -# SPDX-FileCopyrightText: © 2022 Decompollaborate +# SPDX-FileCopyrightText: © 2022-2023 Decompollaborate # SPDX-License-Identifier: MIT [package] name = "rabbitizer" # Version should be synced with include/common/RabbitizerVersion.h -version = "1.5.8" +version = "1.5.10" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 3cbbe16..3a0c73b 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 9 +#define RAB_VERSION_PATCH 10 #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 8126031..90e8689 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.9" +version = "1.5.10" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"