diff --git a/CHANGELOG.md b/CHANGELOG.md index aafc850..5a62ac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.10.0 (2024.MM.DD) + +ENHANCEMENTS: +* Added support for Armbian release info (`/etc/armbian-release`) [[#366](https://github.com/python-distro/distro/pull/366)] + +BUG FIXES: +* Handled `CalledProcessError` when calling `uname` + ## 1.9.0 (2023.12.19) ENHANCEMENTS: diff --git a/src/distro/distro.py b/src/distro/distro.py index 77e2c68..075de6b 100755 --- a/src/distro/distro.py +++ b/src/distro/distro.py @@ -55,7 +55,7 @@ # Python 3.7 TypedDict = dict -__version__ = "1.9.0" +__version__ = "1.10.0" class VersionDict(TypedDict):