Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump #12

Merged
merged 1 commit into from
Jun 30, 2024
Merged

bump #12

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.67.0
override: true
components: clippy
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- uses: actions/checkout@v4

- name: Setup Rust toolchain
run: |
rustup toolchain install stable --profile minimal
rustup component add clippy

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2

- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "machine-uid"
version = "0.5.1"
version = "0.5.2"
authors = ["Hanaasagi <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,12 +12,12 @@ Get os native machine id without root permission.
[dependencies]

[target.'cfg(windows)'.dependencies]
winreg = "0.51"
winreg = "0.52"

[target.'cfg(target_os = "illumos")'.dependencies]
libc = "0.2.155"

# [target.'cfg(windows)'.build-dependencies]
[build-dependencies]
cc = "1.0"
bindgen = "0.68"
bindgen = "0.69"
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ I have tested in following platform:

### Changelog

#### v0.5.2

- Add illumos support [#11](https://github.com/Hanaasagi/machine-uid/pull/11)
- Upgrade winreg to 0.52 [#12](https://github.com/Hanaasagi/machine-uid/pull/12)
- Upgrade bindgen to 0.69 [#12](https://github.com/Hanaasagi/machine-uid/pull/12)

#### v0.5.1

- Upgrade winreg to 0.50 [#9](https://github.com/Hanaasagi/machine-uid/pull/9)
Expand Down
Loading