diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d187d3..5311824f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project (partially) adheres to [Semantic Versioning](https://semver.org ## [Unreleased] +## [v4.14.0.1] - 2022-10-08 +### Changed +- Fix warning related to "broken" `Custom` entry +- Fix `PermissionError` when opening restricted configuration files +- Prefer `macOS-latest` for unit tests in integration jobs matrix + ## [v4.14.0.0] - 2022-09-22 ### Breaking - Project internal versioning update (v4.Y.Z -> 4.X.Y.Z) @@ -400,7 +406,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.0.0...HEAD +[Unreleased]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.0.1...HEAD +[v4.14.0.1]: https://github.com/HorlogeSkynet/archey4/compare/v4.14.0.0...v4.14.0.1 [v4.14.0.0]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.4...v4.14.0.0 [v4.13.4]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.3...v4.13.4 [v4.13.3]: https://github.com/HorlogeSkynet/archey4/compare/v4.13.2...v4.13.3 diff --git a/README.md b/README.md index e91d9e06..b50bd1ba 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.0.0.tar.gz" +wget -qO archey4.tar.gz "https://github.com/HorlogeSkynet/archey4/archive/v4.14.0.1.tar.gz" tar xvzf archey4.tar.gz cd archey4-*/ diff --git a/archey/_version.py b/archey/_version.py index 60cc1e03..7ba1a962 100644 --- a/archey/_version.py +++ b/archey/_version.py @@ -1,3 +1,3 @@ """Simple module storing the current project version""" -__version__ = "4.14.0.0" +__version__ = "4.14.0.1"