From c42b486f6e994faa554434fe1c6c01f52132bc91 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 16 Dec 2024 10:23:20 -0300 Subject: [PATCH] yet another fix --- .github/workflows/pypi_upload.yml | 6 +----- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- include/common/RabbitizerVersion.h | 2 +- pyproject.toml | 2 +- 7 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index b284c61..d860803 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -17,8 +17,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # macos-13 is an intel runner, macos-14 is apple silicon - os: [ubuntu-20.04, macos-13, macos-14, windows-latest] + os: [ubuntu-20.04, macos-latest, windows-latest] steps: - name: Checkout reposistory @@ -76,6 +75,3 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') - with: - user: __token__ - password: ${{ secrets.pypi_password }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f7b35c3..fdeea2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.12.5] - 2024-12-16 + +### Fixed + +- Try to fix Python releases again, again, again. + - This time even the updated cibuildhweels example was wrong. + ## [1.12.4] - 2024-12-16 ### Fixed @@ -695,6 +702,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.12.5]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.4...1.12.5 [1.12.4]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.3...1.12.4 [1.12.3]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.2...1.12.3 [1.12.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.1...1.12.2 diff --git a/Cargo.lock b/Cargo.lock index 97b8405..22a1358 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "rabbitizer" -version = "1.12.4" +version = "1.12.5" dependencies = [ "cc", "glob", diff --git a/Cargo.toml b/Cargo.toml index 2b50cb8..d27d9cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "rabbitizer" # Version should be synced with include/common/RabbitizerVersion.h -version = "1.12.4" +version = "1.12.5" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 2b28361..567c82e 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.12.4,<2.0.0 +rabbitizer>=1.12.5,<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.12.4" +rabbitizer = "1.12.5" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index ae10e5a..6ce10bc 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 12 -#define RAB_VERSION_PATCH 4 +#define RAB_VERSION_PATCH 5 #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 1cb0128..af2a401 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.12.4" +version = "1.12.5" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"