mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-26 18:14:51 +00:00
version bump
This commit is contained in:
parent
dcfea6ce82
commit
d717d29f0f
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.9.2] - 2024-03-10
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix possible stack overflow if `immOverride` is larger than 255 bytes.
|
||||
@ -552,6 +554,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.9.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.9.1...1.9.2
|
||||
[1.9.1]: https://github.com/Decompollaborate/rabbitizer/compare/1.9.0...1.9.1
|
||||
[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
|
||||
|
@ -4,7 +4,7 @@
|
||||
[package]
|
||||
name = "rabbitizer"
|
||||
# Version should be synced with include/common/RabbitizerVersion.h
|
||||
version = "1.9.1"
|
||||
version = "1.9.2"
|
||||
edition = "2021"
|
||||
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
||||
description = "MIPS instruction decoder"
|
||||
|
@ -56,7 +56,7 @@ In order to keep it simple and fast the following features will not be added:
|
||||
The recommended way to install is using from the PyPi release, via `pip`:
|
||||
|
||||
```bash
|
||||
pip install rabbitizer
|
||||
pip install -U rabbitizer
|
||||
```
|
||||
|
||||
In case you want to mess with the latest development version without wanting to
|
||||
@ -82,7 +82,7 @@ cargo add rabbitizer
|
||||
Or you can add it manually to your `Cargo.toml`:
|
||||
|
||||
```toml
|
||||
rabbitizer = "1.9.1"
|
||||
rabbitizer = "1.9.2"
|
||||
```
|
||||
|
||||
See this crate at <https://crates.io/crates/rabbitizer>.
|
||||
|
@ -14,7 +14,7 @@ extern "C" {
|
||||
// Header version
|
||||
#define RAB_VERSION_MAJOR 1
|
||||
#define RAB_VERSION_MINOR 9
|
||||
#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)
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
[project]
|
||||
name = "rabbitizer"
|
||||
# Version should be synced with include/common/RabbitizerVersion.h
|
||||
version = "1.9.1"
|
||||
version = "1.9.2"
|
||||
description = "MIPS instruction decoder"
|
||||
# license = "MIT"
|
||||
readme = "README.md"
|
||||
|
Loading…
Reference in New Issue
Block a user