Skip to content

Commit 242dfd0

Browse files
committed
release 5.0.9
1 parent 8857b08 commit 242dfd0

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
---------
33

4+
Release 5.0.9
5+
"""""""""""""
6+
7+
* drop support for Python 2 and <3.7
8+
* fix CVE-2023-26112, ReDoS attack
9+
410
Release 5.0.8
511
"""""""""""""
612

@@ -31,4 +37,4 @@ Older Releases
3137
* Release 4.7.2 fixes several bugs in 4.7.1
3238
* Release 4.7.1 fixes a bug with the deprecated options keyword in 4.7.0.
3339
* Release 4.7.0 improves performance adds features for validation and
34-
fixes some bugs.
40+
fixes some bugs.

docs/configobj.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2383,6 +2383,12 @@ CHANGELOG
23832383
This is an abbreviated changelog showing the major releases up to version 4.
23842384
From version 4 it lists all releases and changes.
23852385

2386+
2024/09/21 - Version 5.0.9
2387+
--------------------------
2388+
2389+
* drop support for Python 2 and <3.7
2390+
* fix CVE-2023-26112, ReDoS attack
2391+
23862392
2023/01/18 - Version 5.0.8
23872393
--------------------------
23882394

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,9 @@
2323

2424
from setuptools import setup
2525

26-
if sys.version_info < (2, 6):
27-
print('for Python versions < 2.6 use configobj '
28-
'version 4.7.2')
29-
sys.exit(1)
30-
elif sys.version_info < (2, 7):
31-
print('for Python version 2.6 use configobj '
32-
'version 5.0.6')
26+
if sys.version_info[0] < 2:
27+
print('for Python versions < 3 use configobj '
28+
'version 5.0.8')
3329
sys.exit(1)
3430

3531
__here__ = os.path.abspath(os.path.dirname(__file__))

src/configobj/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.0.8'
1+
__version__ = '5.0.9'

0 commit comments

Comments
 (0)