Skip to content

Commit c9f515c

Browse files
committed
Release 1.10.0
1 parent d9ae439 commit c9f515c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 1.10.0 (2025.MM.DD)
2+
3+
BACKWARDS COMPATIBILITY:
4+
* Dropped support for EOL Python 3.6 [[#377](https://github.com/python-distro/distro/pull/377)]
5+
* Deprecated the `distro.uname_attr()` and `distro.uname_info()`.
6+
Use `os.uname()` or `platform.uname()` instead [[#370](https://github.com/python-distro/distro/pull/370)]
7+
8+
ENHANCEMENTS:
9+
* Added support for Armbian release info (`/etc/armbian-release`) [[#366](https://github.com/python-distro/distro/pull/366)]
10+
11+
BUG FIXES:
12+
* Ignored `n/a` from `lsb_release` output
13+
* Handled `CalledProcessError` when calling `lsb_release` and `uname`
14+
115
## 1.9.0 (2023.12.19)
216

317
ENHANCEMENTS:

src/distro/distro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Python 3.7
5656
TypedDict = dict # type: ignore[assignment]
5757

58-
__version__ = "1.9.0"
58+
__version__ = "1.10.0"
5959

6060

6161
class VersionDict(TypedDict):

0 commit comments

Comments
 (0)