From b75637ec332ee545bd5a957b15ea1958f60a82f3 Mon Sep 17 00:00:00 2001 From: angie Date: Sun, 18 Dec 2022 15:33:02 -0300 Subject: [PATCH] version bump --- include/common/RabbitizerVersion.h | 2 +- pyproject.toml | 2 +- rust/Cargo.toml | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 83e1e1a..e0911d1 100644 --- a/include/common/RabbitizerVersion.h +++ b/include/common/RabbitizerVersion.h @@ -13,7 +13,7 @@ extern "C" { // Header version #define RAB_VERSION_MAJOR 1 -#define RAB_VERSION_MINOR 4 +#define RAB_VERSION_MINOR 5 #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 048e2ff..2098e00 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.4.0" +version = "1.5.0" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 27b3316..552acf8 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,7 +1,10 @@ +# SPDX-FileCopyrightText: © 2022 Decompollaborate +# SPDX-License-Identifier: MIT + [package] name = "rabbitizer" # Version should be synced with include/common/RabbitizerVersion.h -version = "1.4.0" +version = "1.5.0" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder"