File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Changelog
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+
410Release 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.
Original file line number Diff line number Diff line change @@ -2383,6 +2383,12 @@ CHANGELOG
23832383This is an abbreviated changelog showing the major releases up to version 4.
23842384From 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+
238623922023/01/18 - Version 5.0.8
23872393--------------------------
23882394
Original file line number Diff line number Diff line change 2323
2424from 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__ ))
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