diff --git a/CHANGELOG.md b/CHANGELOG.md index d1db82f0..105ca69f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file. 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). +## [v4.13.3] - 2021-11-13 +### Added +- Official Rocky Linux distribution support +- Official upcoming support for Python 3.11 +- Support for `pkgin` (NetBSD) package manager +- Support for motherboard DMI information in `Model` +- Document terminal monospaced font recommendation for ASCII art + +### Changed +- Fix possible `Uptime` discrepancies on macOS 10.12+ +- Prevent `system_profiler` STDERR logs output on macOS +- Remove square brackets around architecture from `Distro` entry output +- `virt-what` and/or `dmidecode` probing for `Model`, even for unprivileged users + ## [v4.13.2] - 2021-10-16 ### Added - Support for `maim` ("Make image") screenshot back-end @@ -347,7 +361,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.13.2...HEAD +[Unreleased]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.3...HEAD +[v4.13.3]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.2...v4.13.3 [v4.13.2]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.1...v4.13.2 [v4.13.1]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.0...v4.13.1 [v4.13.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.12.0...v4.13.0 diff --git a/README.md b/README.md index 02c84d2c..46f39ebc 100644 --- a/README.md +++ b/README.md @@ -121,10 +121,9 @@ brew install archey4 ```bash # If you want the latest release : -LATEST_VERSION="v4.13.2" -wget "https://github.com/HorlogeSkynet/archey4/archive/${LATEST_VERSION}.tar.gz" -tar xvzf "${LATEST_VERSION}.tar.gz" -cd "archey4-${LATEST_VERSION}/" +wget -qO archey4.tar.gz "https://github.com/HorlogeSkynet/archey4/archive/v4.13.3.tar.gz" +tar xvzf archey4.tar.gz +cd archey4-*/ # If you want the latest (stable) changes : git clone https://github.com/HorlogeSkynet/archey4.git diff --git a/archey/_version.py b/archey/_version.py index 8b284aae..4dd1ff1b 100644 --- a/archey/_version.py +++ b/archey/_version.py @@ -1,3 +1,3 @@ """Simple module storing the current project version""" -__version__ = 'v4.13.2' +__version__ = 'v4.13.3'