From 59042b2777b319fa45266a69dd1634df3d2e2fbe Mon Sep 17 00:00:00 2001 From: angie Date: Sun, 18 Feb 2024 13:13:05 -0300 Subject: [PATCH] version bump --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- include/common/RabbitizerVersion.h | 4 ++-- pyproject.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b1910..06b245c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.9.0] - 2024-02-18 + ### Added - Implement `neg` pseudo. @@ -540,6 +542,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First version [unreleased]: https://github.com/Decompollaborate/rabbitizer/compare/master...develop +[1.9.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.8.3...1.9.0 +[1.8.3]: https://github.com/Decompollaborate/rabbitizer/compare/1.8.2...1.8.3 [1.8.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.8.1...1.8.2 [1.8.1]: https://github.com/Decompollaborate/rabbitizer/compare/1.8.0...1.8.1 [1.8.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.7.10...1.8.0 diff --git a/Cargo.toml b/Cargo.toml index 57b4623..b2e152e 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.8.4" +version = "1.9.0" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 961263e..344f876 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ cargo add rabbitizer Or you can add it manually to your `Cargo.toml`: ```toml -rabbitizer = "1.8.4" +rabbitizer = "1.9.0" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index e29ea06..06345ad 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 8 -#define RAB_VERSION_PATCH 4 +#define RAB_VERSION_MINOR 9 +#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 1fc550d..1cd0401 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.8.4" +version = "1.9.0" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"