Skip to content

Commit 697b2db

Browse files
authored
Release 1.7.0
1 parent 2a89f76 commit 697b2db

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 1.7.0 (2022.02.15)
2+
3+
BACKWARD COMPATIBILITY:
4+
* Dropped support for EOL Pythons 2.7, 3.4 and 3.5 [[#281](https://github.com/python-distro/distro/pull/281)]
5+
* Dropped support for LSB and `uname` back-ends when `--root-dir` is specified [[#311](https://github.com/python-distro/distro/pull/311)]
6+
* Moved `distro.py` to `src/distro/distro.py` [[#315](https://github.com/python-distro/distro/pull/315)]
7+
8+
ENHANCEMENTS:
9+
* Documented that `distro.version()` can return an empty string on rolling releases [[#312](https://github.com/python-distro/distro/pull/312)]
10+
* Documented support for Python 3.10 [[#316](https://github.com/python-distro/distro/pull/316)]
11+
* Added official support for Rocky Linux distribution [[#318](https://github.com/python-distro/distro/pull/318)]
12+
* Added a shebang to `distro.py` to allow standalone execution [[#313](https://github.com/python-distro/distro/pull/313)]
13+
* Added support for AIX platforms [[#311](https://github.com/python-distro/distro/pull/311)]
14+
* Added compliance for PEP-561 [[#315](https://github.com/python-distro/distro/pull/315)]
15+
16+
BUG FIXES:
17+
* Fixed `include_uname` parameter oversight [[#305](https://github.com/python-distro/distro/pull/305)]
18+
* Fixed crash when `uname -rs` output is empty [[#304](https://github.com/python-distro/distro/pull/304)]
19+
* Fixed Amazon Linux identifier in `distro.id()` documentation [[#318](https://github.com/python-distro/distro/pull/318)]
20+
* Fixed OpenSuse >= 15 support [[#319](https://github.com/python-distro/distro/pull/319)]
21+
* Fixed encoding issues when opening distro release files [[#324](https://github.com/python-distro/distro/pull/324)]
22+
* Fixed `linux_distribution` regression introduced in [[#230](https://github.com/python-distro/distro/pull/230)] [[#325](https://github.com/python-distro/distro/pull/325)]
23+
124
## 1.6.0 (2021.7.30)
225

326
BACKWARDS COMPATIBILITY:

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
5757

58-
__version__ = "1.6.0"
58+
__version__ = "1.7.0"
5959

6060

6161
class VersionDict(TypedDict):

0 commit comments

Comments
 (0)