diff --git a/CHANGELOG.md b/CHANGELOG.md index 2974178..6862ad1 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.11.2] - 2024-07-16 + ### Added - Implement the `rfe` ("Restore From Exception") instruction. @@ -641,6 +643,7 @@ 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.11.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.11.1...1.11.2 [1.11.1]: https://github.com/Decompollaborate/rabbitizer/compare/1.11.0...1.11.1 [1.11.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.10.0...1.11.0 [1.10.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.9.5...1.10.0 diff --git a/Cargo.toml b/Cargo.toml index 9982b37..8518810 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,11 @@ [package] name = "rabbitizer" # Version should be synced with include/common/RabbitizerVersion.h -version = "1.11.1" +version = "1.11.2" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" readme = "README.md" -homepage = "https://github.com/Decompollaborate/rabbitizer" repository = "https://github.com/Decompollaborate/rabbitizer" license-file = "LICENSE" keywords = ["MIPS", "decoder"] diff --git a/README.md b/README.md index eef5dde..7a29e5e 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add this library with the following line: ```txt -rabbitizer>=1.11.1,<2.0.0 +rabbitizer>=1.11.2,<2.0.0 ``` ### Development version @@ -109,7 +109,7 @@ cargo add rabbitizer Or you can add it manually to your `Cargo.toml`: ```toml -rabbitizer = "1.11.1" +rabbitizer = "1.11.2" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 9a7c785..9f92b73 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 11 -#define RAB_VERSION_PATCH 1 +#define RAB_VERSION_PATCH 2 #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 daa2019..752ff3d 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.11.1" +version = "1.11.2" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md" diff --git a/tests/c/instruction_checks/r5900_disasm.c b/tests/c/instruction_checks/r5900_disasm.c index 7b97ef0..fa8c033 100644 --- a/tests/c/instruction_checks/r5900_disasm.c +++ b/tests/c/instruction_checks/r5900_disasm.c @@ -1,4 +1,4 @@ -/* SPDX-FileCopyrightText: © 2024 Decompollaborate */ +/* SPDX-FileCopyrightText: © 2023-2024 Decompollaborate */ /* SPDX-License-Identifier: MIT */ #include "rabbitizer.h"