Skip to content

Commit 9df1cb4

Browse files
committed
Fix rab-disasmdis release
1 parent bf98c45 commit 9df1cb4

File tree

7 files changed

+22
-15
lines changed

7 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [2.0.0-alpha.2] - 2025-04-02
10+
## [2.0.0-alpha.3] - 2025-05-23
11+
12+
### Added
13+
14+
- First public release of `rab-disasmdis`.
15+
- Disassemble MIPS instructions directly in your terminal, using the power of
16+
rabbitizer.
17+
18+
## [2.0.0-alpha.2] - 2025-05-23
1119

1220
### Added
1321

@@ -24,9 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2432
operand.
2533
- Implementations for `ValuedOperand`: `Hash`, `Eq` and `Ord`.
2634
- Thanks to @ethteck (PR #80)
27-
- First public release of `rab-disasmdis`.
28-
- Disassemble MIPS instructions directly in your terminal, using the power of
29-
rabbitizer.
3035

3136
### Changed
3237

@@ -709,7 +714,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
709714

710715
- First version
711716

712-
[unreleased]: https://github.com/Decompollaborate/rabbitizer/compare/2.0.0-alpha.2...🦀
717+
[unreleased]: https://github.com/Decompollaborate/rabbitizer/compare/2.0.0-alpha.3...🦀
718+
[2.0.0-alpha.3]: https://github.com/Decompollaborate/rabbitizer/compare/2.0.0-alpha.1...2.0.0-alpha.3
713719
[2.0.0-alpha.2]: https://github.com/Decompollaborate/rabbitizer/compare/2.0.0-alpha.1...2.0.0-alpha.2
714720
[2.0.0-alpha.1]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.0...2.0.0-alpha.1
715721
[1.12.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.11.2...1.12.0

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolver = "2"
1010

1111
[workspace.package]
1212
# Version should be synced with include/common/RabbitizerVersion.h
13-
version = "2.0.0-alpha.2"
13+
version = "2.0.0-alpha.3"
1414
edition = "2021"
1515
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
1616
repository = "https://github.com/Decompollaborate/rabbitizer"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ can be included in your Cargo enabled project like this:
8181

8282
```toml
8383
[dependencies]
84-
rabbitizer = "2.0.0-alpha.2"
84+
rabbitizer = "2.0.0-alpha.3"
8585
```
8686

8787
For more details and feature configuration, consult the

src/rab-disasmdis/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ rust-version.workspace = true
99
authors.workspace = true
1010
license.workspace = true
1111
repository.workspace = true
12-
# description = "MIPS instruction decoder"
13-
# readme = "README.md"
14-
# keywords = ["MIPS", "decoder"]
12+
description = "Disassemble MIPS instructions directly in your terminal, using the power of rabbitizer."
13+
readme = "README.md"
14+
keywords = ["MIPS", "decoder", "cli"]
15+
categories = ["command-line-utilities"]
1516

1617
[[bin]]
1718
# Just for testing
@@ -20,4 +21,4 @@ path = "src/bin.rs"
2021

2122
[dependencies]
2223
clap = { version = "4.5.20", features = ["derive"] }
23-
rabbitizer = { path = "../rabbitizer", features = ["all_extensions"]}
24+
rabbitizer = { path = "../rabbitizer", version = "2.0.0-alpha.3", features = ["all_extensions"] }

src/rabbitizer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ can be included in your Cargo enabled project like this:
111111

112112
```toml
113113
[dependencies]
114-
rabbitizer = "2.0.0-alpha.1"
114+
rabbitizer = "2.0.0-alpha.3"
115115
```
116116

117117
### Crate features

src/rabbitizer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[project]
55
name = "rabbitizer"
66
# Version should be synced with include/common/RabbitizerVersion.h
7-
version = "2.0.0-alpha.2"
7+
version = "2.0.0-alpha.3"
88
description = "MIPS instruction decoder"
99
readme = "README.md"
1010
license = {file = "../../LICENSE"}

0 commit comments

Comments
 (0)