version bump

This commit is contained in:
angie 2024-07-16 21:15:37 -04:00
parent 5e63140407
commit f28fba1cc5
6 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -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 <angheloalf95@gmail.com>"]
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"]

View File

@ -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 <https://crates.io/crates/rabbitizer>.

View File

@ -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)

View File

@ -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"

View File

@ -1,4 +1,4 @@
/* SPDX-FileCopyrightText: © 2024 Decompollaborate */
/* SPDX-FileCopyrightText: © 2023-2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */
#include "rabbitizer.h"