Skip to content

Commit

Permalink
0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed May 19, 2024
1 parent ee226a2 commit dff3f9a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rlx"
version = "0.2.2"
version = "0.2.3"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@napalmpapalam/rlx",
"version": "0.2.2",
"version": "0.2.3",
"description": "Work with releases with ease",
"author": "Semen Loktionov <loktionov.kh@gmail.com>",
"license": "MIT",
Expand Down

0 comments on commit dff3f9a

Please sign in to comment.