chore(release): prepare for pfetch-rs v2.5.0
Some checks failed
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-apple-darwin/release/pfetch, false, macOS x86_64, macos-latest, pfetch-macos-x86_64.tar.gz, true, x86_64-apple-darwin) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (false, Linux x86_64, ubuntu-latest, true, x86_64-unknown-linux-gnu) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (false, Windows x86_64, windows-latest, true, x86_64-pc-windows-gnu) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (false, macOS x86_64, macos-latest, true, x86_64-apple-darwin) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (true, Android, ubuntu-latest, true, aarch64-linux-android) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (true, FreeBSD, ubuntu-latest, true, x86_64-unknown-freebsd) (push) Has been cancelled
Release / Generate Changelog (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-apple-darwin/release/pfetch, false, macOS aarch64, macos-latest, pfetch-macos-aarch64.tar.gz, true, aarch64-apple-darwin) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-linux-android/release/pfetch, true, Android, ubuntu-latest, pfetch-android-aarch64.tar.gz, true, aarch64-linux-android) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-unknown-linux-musl/release/pfetch, true, Linux musl aarch64, ubuntu-latest, pfetch-linux-musl-aarch64.tar.gz, true, aarch64-unknown-linux-musl) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/armv7-unknown-linux-gnueabihf/release/pfetch, true, Linux ARMv7, ubuntu-latest, pfetch-linux-gnueabihf-armv7.tar.gz, true, armv7-unknown-linux-gnueabihf) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-pc-windows-gnu/release/pfetch.exe, false, Windows x86_64, windows-latest, pfetch-windows-x86_64.exe, true, x86_64-pc-windows-gnu) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-freebsd/release/pfetch, true, freeBSD x86_64, ubuntu-latest, pfetch-freebsd-x86_64.tar.gz, true, x86_64-unknown-freebsd) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-linux-gnu/release/pfetch, false, Linux GNU x86_64, ubuntu-latest, pfetch-linux-gnu-x86_64.tar.gz, true, x86_64-unknown-linux-gnu) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-linux-musl/release/pfetch, true, Linux musl x86_64, ubuntu-latest, pfetch-linux-musl-x86_64.tar.gz, true, x86_64-unknown-linux-musl) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-netbsd/release/pfetch, true, NetBSD x86_64, ubuntu-latest, pfetch-netbsd-x86_64.tar.gz, true, x86_64-unknown-netbsd) (push) Has been cancelled

This commit is contained in:
Adrian Groh 2023-04-14 13:55:19 +02:00
parent bbb2d6e254
commit aeccdd7ca2
Signed by: Gobidev
GPG Key ID: 3AA3153E98B0D771
3 changed files with 23 additions and 2 deletions

View File

@ -1,5 +1,26 @@
# Changelog # Changelog
## [2.5.0] - 2023-04-14
### Bug Fixes
- Never show `TEMPLATE_VERSION_ID` in os name
- Fix panic when file specified in `PF_SOURCE` does not exist
### Documentation
- Rewrite notice on slow package counts in README
### Features
- Add help menu and `-v` argument to show version (#24)
- Add alternative `rpm` package count method (for OpenSUSE)
### Miscellaneous
- Bump libmacchina to version 7.0.0
- Update dependencies
## [2.4.0] - 2023-03-24 ## [2.4.0] - 2023-03-24
### Documentation ### Documentation

2
Cargo.lock generated
View File

@ -793,7 +793,7 @@ dependencies = [
[[package]] [[package]]
name = "pfetch" name = "pfetch"
version = "2.4.0" version = "2.5.0"
dependencies = [ dependencies = [
"crossterm", "crossterm",
"dotenvy", "dotenvy",

View File

@ -3,7 +3,7 @@ members = ["pfetch-extractor"]
[package] [package]
name = "pfetch" name = "pfetch"
version = "2.4.0" version = "2.5.0"
edition = "2021" edition = "2021"
authors = ["Gobidev"] authors = ["Gobidev"]
description = "A rewrite of the pfetch system information tool" description = "A rewrite of the pfetch system information tool"