File tree Expand file tree Collapse file tree 4 files changed +17
-9
lines changed Expand file tree Collapse file tree 4 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
3
4
+ Release 5.0.9
5
+ """""""""""""
6
+
7
+ * drop support for Python 2 and <3.7
8
+ * fix CVE-2023-26112, ReDoS attack
9
+
4
10
Release 5.0.8
5
11
"""""""""""""
6
12
@@ -31,4 +37,4 @@ Older Releases
31
37
* Release 4.7.2 fixes several bugs in 4.7.1
32
38
* Release 4.7.1 fixes a bug with the deprecated options keyword in 4.7.0.
33
39
* Release 4.7.0 improves performance adds features for validation and
34
- fixes some bugs.
40
+ fixes some bugs.
Original file line number Diff line number Diff line change @@ -2383,6 +2383,12 @@ CHANGELOG
2383
2383
This is an abbreviated changelog showing the major releases up to version 4.
2384
2384
From version 4 it lists all releases and changes.
2385
2385
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
+
2386
2392
2023/01/18 - Version 5.0.8
2387
2393
--------------------------
2388
2394
Original file line number Diff line number Diff line change 23
23
24
24
from setuptools import setup
25
25
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' )
33
29
sys .exit (1 )
34
30
35
31
__here__ = os .path .abspath (os .path .dirname (__file__ ))
Original file line number Diff line number Diff line change 1
- __version__ = '5.0.8 '
1
+ __version__ = '5.0.9 '
You can’t perform that action at this time.
0 commit comments