chore(release): prepare for pfetch-rs v2.10.0
Some checks failed
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
CI / render (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-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
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

This commit is contained in:
Adrian Groh 2024-06-29 17:36:23 +02:00
parent 3852feaeb6
commit 84243151fa
Signed by: Gobidev
GPG Key ID: 3AA3153E98B0D771
4 changed files with 22 additions and 5 deletions

View File

@ -1,5 +1,22 @@
# Changelog # Changelog
## [2.10.0] - 2024-06-29
### Bug Fixes
- Improve uptime calculation
- Change primary text color for the GNU Hurd logo (#55)
### Features
- Add CachyOS logo (#56)
- Use faster method for nix package count (#57)
### Miscellaneous
- Update the license year (#53)
- Update dependencies
## [2.9.2] - 2024-06-03 ## [2.9.2] - 2024-06-03
### Features ### Features

4
Cargo.lock generated
View File

@ -821,7 +821,7 @@ dependencies = [
[[package]] [[package]]
name = "pfetch" name = "pfetch"
version = "2.9.2" version = "2.10.0"
dependencies = [ dependencies = [
"crossterm", "crossterm",
"dotenvy", "dotenvy",
@ -836,7 +836,7 @@ dependencies = [
[[package]] [[package]]
name = "pfetch-extractor" name = "pfetch-extractor"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"pfetch-logo-parser", "pfetch-logo-parser",
"proc-macro2", "proc-macro2",

View File

@ -3,7 +3,7 @@ members = ["pfetch-extractor", "pfetch-logo-parser"]
[package] [package]
name = "pfetch" name = "pfetch"
version = "2.9.2" version = "2.10.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"
@ -16,7 +16,7 @@ categories = ["command-line-utilities"]
[dependencies] [dependencies]
pfetch-logo-parser = { path = "./pfetch-logo-parser", version = "0.1.0" } pfetch-logo-parser = { path = "./pfetch-logo-parser", version = "0.1.0" }
pfetch-extractor = { path = "./pfetch-extractor", version = "0.2.0" } pfetch-extractor = { path = "./pfetch-extractor", version = "0.2.2" }
globset = "0.4.10" globset = "0.4.10"
dotenvy = "0.15.6" dotenvy = "0.15.6"
glob = "0.3.1" glob = "0.3.1"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pfetch-extractor" name = "pfetch-extractor"
version = "0.2.1" version = "0.2.2"
authors = ["Gobidev"] authors = ["Gobidev"]
edition = "2021" edition = "2021"
keywords = ["pfetch"] keywords = ["pfetch"]