chore(release): prepare for pfetch-rs v2.1.0

This commit is contained in:
Adrian Groh 2023-02-28 09:30:29 +01:00
parent 577b1dd3b2
commit 400d7ca3f3
Signed by: Gobidev
GPG Key ID: 3AA3153E98B0D771
4 changed files with 25 additions and 5 deletions

View File

@ -1,5 +1,25 @@
# Changelog # Changelog
## [2.1.0] - 2023-02-28
### Bug Fixes
- Fix os and host detection on Windows
### Documentation
- Add new logos to README.md
### Features
- Add windows ascii logo
- Use libmacchina package count for Windows and BSD
- Add DietPi logo and support all 256 ANSI colors
### Miscellaneous
- Sort logos alphabetically
## [2.0.0] - 2023-02-21 ## [2.0.0] - 2023-02-21
### Bug Fixes ### Bug Fixes

4
Cargo.lock generated
View File

@ -744,7 +744,7 @@ dependencies = [
[[package]] [[package]]
name = "pfetch" name = "pfetch"
version = "2.0.0" version = "2.1.0"
dependencies = [ dependencies = [
"dotenvy", "dotenvy",
"glob", "glob",
@ -756,7 +756,7 @@ dependencies = [
[[package]] [[package]]
name = "pfetch-extractor" name = "pfetch-extractor"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -3,7 +3,7 @@ members = ["pfetch-extractor"]
[package] [package]
name = "pfetch" name = "pfetch"
version = "2.0.0" version = "2.1.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"
@ -15,7 +15,7 @@ categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
pfetch-extractor = { path = "./pfetch-extractor", version = "0.1.0" } pfetch-extractor = { path = "./pfetch-extractor", version = "0.1.1" }
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.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
authors = ["Gobidev"] authors = ["Gobidev"]
description = "A rust proc-macro to extract pfetch logos at compile time" description = "A rust proc-macro to extract pfetch logos at compile time"