From d4e5cf1b6d53524bcb54e9c9ad304662655711d3 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 16 Dec 2024 08:38:20 -0300 Subject: [PATCH] version bump --- .github/workflows/pypi_upload.yml | 6 ++++-- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- include/common/RabbitizerVersion.h | 2 +- pyproject.toml | 2 +- 7 files changed, 19 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 655e12e4..a8c9c878 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -57,12 +57,14 @@ jobs: runs-on: ubuntu-20.04 if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/download-artifact@v4 + - name: Download build artifacts + uses: actions/download-artifact@v4 with: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1.4.2 + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@v1.12.3 with: user: __token__ password: ${{ secrets.pypi_password }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 58fc0bcd..87895c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.12.1] - 2024-07-21 +## [1.12.2] - 2024-07-16 + +### Fixed + +- Fix Python releases. + - It failed due to outdated Github Action. + +## [1.12.1] - 2024-12-15 ### Added @@ -674,6 +681,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.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.1...1.12.2 [1.12.1]: https://github.com/Decompollaborate/rabbitizer/compare/1.12.0...1.12.1 [1.12.0]: https://github.com/Decompollaborate/rabbitizer/compare/1.11.2...1.12.0 [1.11.2]: https://github.com/Decompollaborate/rabbitizer/compare/1.11.1...1.11.2 diff --git a/Cargo.lock b/Cargo.lock index 2b1b1dab..ea5413ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "rabbitizer" -version = "1.12.1" +version = "1.12.2" dependencies = [ "cc", "glob", diff --git a/Cargo.toml b/Cargo.toml index 3cd32b2a..44767763 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.1" +version = "1.12.2" edition = "2021" authors = ["Anghelo Carvajal "] description = "MIPS instruction decoder" diff --git a/README.md b/README.md index 17f82b1c..56e5c05c 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.1,<2.0.0 +rabbitizer>=1.12.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.12.1" +rabbitizer = "1.12.2" ``` See this crate at . diff --git a/include/common/RabbitizerVersion.h b/include/common/RabbitizerVersion.h index 4d23bbfa..b629166c 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 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) diff --git a/pyproject.toml b/pyproject.toml index adc0f3d1..f1a0cd5e 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.1" +version = "1.12.2" description = "MIPS instruction decoder" # license = "MIT" readme = "README.md"