From 5d6b5e696f9f6969dee955dd8b733f614e7a2fe5 Mon Sep 17 00:00:00 2001 From: angie Date: Sat, 10 Jun 2023 10:38:33 -0400 Subject: [PATCH] Version bump --- .github/workflows/make.yml | 2 +- Cargo.toml | 2 +- include/common/RabbitizerVersion.h | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 3f70c96..22647a3 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -1,4 +1,4 @@ -name: make +name: Build C api and run tests # Build on every branch push, tag push, and pull request change: on: [push, pull_request] diff --git a/Cargo.toml b/Cargo.toml index 5de1a02..ddd4159 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.7.2" +version = "1.7.3" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index e44fca1..f161379 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 7 -#define RAB_VERSION_PATCH 2 +#define RAB_VERSION_PATCH 3 #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 a18c685..1f3bc85 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.7.2" +version = "1.7.3" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"