diff --git a/CHANGELOG.md b/CHANGELOG.md index e968424..6bb1c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project (partially) adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [v4.15.0.0] - 2024-09-30 ### Added - `GPU` support for Raspberry Pi - `Model` support for Raspberry Pi 5+ - `none` logo style to completely hide distribution logo -- AppArmor confinement profile (included in Debian and AUR packages) - `DesktopEnvironment` support for Windows - `WindowManager` support for Windows - `WindowManager` support for some Wayland compositors ### Changed -- `Model` honor `/proc/device-tree/model` when it exists +- `Model` honors `/proc/device-tree/model` when it exists +- `Packages` shows counts divided by package managers - `DesktopEnvironment` now honors environment (including `XDG_CURRENT_DESKTOP`) ### Removed - `_distribution` protected attribute from `Output` class +### Security +- AppArmor confinement profile (included in Debian and AUR packages) + ## [v4.14.3.0] - 2024-04-06 ### Added - Official Armbian distribution support @@ -459,7 +464,8 @@ and this project (partially) adheres to [Semantic Versioning](https://semver.org - Main bugs fixes - Project officially forked from djmelik/archey -[Unreleased]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.3.0...HEAD +[Unreleased]: https://github.com/HorlogeSkynet/archey4/compare/v4.15.0.0...HEAD +[v4.15.0.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.3.0...v4.15.0.0 [v4.14.3.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.2.0...v4.14.3.0 [v4.14.2.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.1.0...v4.14.2.0 [v4.14.1.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.0.1...v4.14.1.0 diff --git a/README.md b/README.md index a5ebd4e..723a939 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ pkg install archey4 ```bash # If you want the latest release : -wget -qO archey4.tar.gz "https://github.com/HorlogeSkynet/archey4/archive/v4.14.3.0.tar.gz" +wget -qO archey4.tar.gz "https://github.com/HorlogeSkynet/archey4/archive/v4.15.0.0.tar.gz" tar xvzf archey4.tar.gz cd archey4-*/ diff --git a/archey/_version.py b/archey/_version.py index b61252d..33706e0 100644 --- a/archey/_version.py +++ b/archey/_version.py @@ -1,3 +1,3 @@ """Simple module storing the current project version""" -__version__ = "4.14.3.0" +__version__ = "4.15.0.0"