Skip to content

Commit b9242fe

Browse files
authored
Merge pull request #74 from Decompollaborate/develop
1.12.5
2 parents 571e73a + c42b486 commit b9242fe

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

.github/workflows/pypi_upload.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
20-
# macos-13 is an intel runner, macos-14 is apple silicon
21-
os: [ubuntu-20.04, macos-13, macos-14, windows-latest]
20+
os: [ubuntu-20.04, macos-latest, windows-latest]
2221

2322
steps:
2423
- name: Checkout reposistory
@@ -76,6 +75,3 @@ jobs:
7675
- name: Publish to PyPI
7776
uses: pypa/gh-action-pypi-publish@release/v1
7877
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
79-
with:
80-
user: __token__
81-
password: ${{ secrets.pypi_password }}

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.12.5] - 2024-12-16
11+
12+
### Fixed
13+
14+
- Try to fix Python releases again, again, again.
15+
- This time even the updated cibuildhweels example was wrong.
16+
1017
## [1.12.4] - 2024-12-16
1118

1219
### Fixed
@@ -695,6 +702,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
695702
- First version
696703

697704
[unreleased]: https://github.com/Decompollaborate/rabbitizer/compare/master...develop
705+
[1.12.5]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.4...1.12.5
698706
[1.12.4]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.3...1.12.4
699707
[1.12.3]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.2...1.12.3
700708
[1.12.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.1...1.12.2

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -4,7 +4,7 @@
44
[package]
55
name = "rabbitizer"
66
# Version should be synced with include/common/RabbitizerVersion.h
7-
version = "1.12.4"
7+
version = "1.12.5"
88
edition = "2021"
99
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
1010
description = "MIPS instruction decoder"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add this
6969
library with the following line:
7070

7171
```txt
72-
rabbitizer>=1.12.4,<2.0.0
72+
rabbitizer>=1.12.5,<2.0.0
7373
```
7474

7575
### Development version
@@ -109,7 +109,7 @@ cargo add rabbitizer
109109
Or you can add it manually to your `Cargo.toml`:
110110

111111
```toml
112-
rabbitizer = "1.12.4"
112+
rabbitizer = "1.12.5"
113113
```
114114

115115
See this crate at <https://crates.io/crates/rabbitizer>.

include/common/RabbitizerVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extern "C" {
1414
// Header version
1515
#define RAB_VERSION_MAJOR 1
1616
#define RAB_VERSION_MINOR 12
17-
#define RAB_VERSION_PATCH 4
17+
#define RAB_VERSION_PATCH 5
1818

1919
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH)
2020

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 = "1.12.4"
7+
version = "1.12.5"
88
description = "MIPS instruction decoder"
99
# license = "MIT"
1010
readme = "README.md"

0 commit comments

Comments
 (0)