diff --git a/ChangeLog b/ChangeLog index 96212cf..96b944c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,12 @@ ----------------- -2018-06-04 3.5.2 (not yet released) +2018-06-07 3.5.2 ----------------- * Explicitly include in _posixsubprocess_helpers.c; it already - gets configure checked and pulled in via Python's own but it - is better to be explicit. #IWYU + gets configure checked and pulled in via Python's own in many + circumstances but it is better to be explicit. #IWYU + If you were using subprocess32 on a Python interpreter built *without* + the --with-fpectl configure option enabled, restore_signals is now + useful rather than a no-op. I do not know if such builds were common. * Adds a functional test for restore_signals=True behavior. ----------------- diff --git a/setup.py b/setup.py index 345d00c..7ff992c 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ def main(): setup( name='subprocess32', - version='3.5.1', + version='3.5.2', description='A backport of the subprocess module from Python 3 for use on 2.x.', long_description="""\ This is a backport of the subprocess standard library module from