diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 3034462..4fccaab 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -89,7 +89,7 @@ jobs: if: matrix.build == 'linux' run: | sudo apt-get update - - sudo apt-get install musl-tools pkg-config libssl-dev -y + sudo apt-get install musl-tools - name: Install p7zip (MacOS) if: matrix.build == 'macos' @@ -105,11 +105,15 @@ jobs: - name: Build (MacOS) if: matrix.build == 'macos' working-directory: ${{ env.WORKING_DIR }} - run: cargo build --release + run: | + rustup target add ${{ env.MACOS_TARGET }} + cargo build --release --target ${{ env.MACOS_TARGET }} - name: Build (Windows) if: matrix.build == 'windows' working-directory: ${{ env.WORKING_DIR }} - run: cargo build --release + run: | + rustup target add ${{ env.WINDOWS_TARGET }} + cargo build --release --target ${{ env.WINDOWS_TARGET }} env: RUSTFLAGS: -Ctarget-feature=+crt-static diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b56ab..2262551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3] - 2024-05-19 +### Changed +- Trying to fix macos binary + ## [0.2.2] - 2024-05-19 ### Removed - `git2` dependency to remove the need for `libgit2` on the system @@ -68,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/napalmpapalam/rlx/compare/rust_v0.2.2...HEAD +[Unreleased]: https://github.com/napalmpapalam/rlx/compare/rust_v0.2.3...HEAD +[0.2.3]: https://github.com/napalmpapalam/rlx/compare/rust_v0.2.2...rust_v0.2.3 [0.2.2]: https://github.com/napalmpapalam/rlx/compare/rust_v0.2.1...rust_v0.2.2 [0.2.1]: https://github.com/napalmpapalam/rlx/compare/rust_v0.2.0...rust_v0.2.1 [0.2.0]: https://github.com/napalmpapalam/rlx/compare/rust_v0.1.9...rust_v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 315e955..2125366 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rlx" -version = "0.2.2" +version = "0.2.3" edition = "2021" [dependencies] diff --git a/npm/package.json b/npm/package.json index 898ee90..97a83fa 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "@napalmpapalam/rlx", - "version": "0.2.2", + "version": "0.2.3", "description": "Work with releases with ease", "author": "Semen Loktionov ", "license": "MIT",