From c9f515c3c49d2a812fef647a42221995f2b85e7b Mon Sep 17 00:00:00 2001 From: Samuel FORESTIER Date: Sat, 26 Oct 2024 12:28:00 +0200 Subject: [PATCH] Release 1.10.0 --- CHANGELOG.md | 14 ++++++++++++++ src/distro/distro.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aafc850..52616be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 1.10.0 (2025.MM.DD) + +BACKWARDS COMPATIBILITY: +* Dropped support for EOL Python 3.6 [[#377](https://github.com/python-distro/distro/pull/377)] +* Deprecated the `distro.uname_attr()` and `distro.uname_info()`. + Use `os.uname()` or `platform.uname()` instead [[#370](https://github.com/python-distro/distro/pull/370)] + +ENHANCEMENTS: +* Added support for Armbian release info (`/etc/armbian-release`) [[#366](https://github.com/python-distro/distro/pull/366)] + +BUG FIXES: +* Ignored `n/a` from `lsb_release` output +* Handled `CalledProcessError` when calling `lsb_release` and `uname` + ## 1.9.0 (2023.12.19) ENHANCEMENTS: diff --git a/src/distro/distro.py b/src/distro/distro.py index c7aa60f..8f25a61 100755 --- a/src/distro/distro.py +++ b/src/distro/distro.py @@ -55,7 +55,7 @@ # Python 3.7 TypedDict = dict # type: ignore[assignment] -__version__ = "1.9.0" +__version__ = "1.10.0" class VersionDict(TypedDict):