From ede595be71bb4635832688b39289fa996c7733c1 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Mon, 17 Jul 2023 11:03:18 +0100 Subject: [PATCH] Changes for 0.3.7. --- CHANGES.rst | 32 +++++++++++++++++++++++++++++++- distlib/__init__.py | 2 +- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1360b60..7746985 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,21 +1,51 @@ Change log for ``distlib`` -------------------------- -0.3.7 (future) +0.3.8 (future) ~~~~~~~~~~~~~~ Released: Not yet. +0.3.7 +~~~~~ + +Released: 2023-07-17 + +- database + + - Handle newlines when parsing metadata. + - markers - Use version comparison logic for python_full_version. Thanks to Albert Peschar for the patch. + - Simplify code with a set comprehension. Thanks to Christian Clauss for + the patch. + - scripts - Fix shebang computation for source builds of Python. Thanks to Eli Schwartz for the patch. +- util + + - Extract tarfiles more safely by incorporating tarfile filters. Thanks to + Petr Viktorin for the patch. + + - Check for 'has_cert' attribute before using it. Thanks to Lumir Balhar for + the patch. + + - Fix #203: Handle parsing of export entries to allow script names such as + "," or ",foo". Thanks to Flavio Amurrio for the report. + +- versions + + - Fix #200: Improve conformance to PEP440. Thanks to GitHub user con-f-use + for the report. + +In addition to the above, an SPDX license identifier is now used. + 0.3.6 ~~~~~ diff --git a/distlib/__init__.py b/distlib/__init__.py index 7719c39..ad8a082 100644 --- a/distlib/__init__.py +++ b/distlib/__init__.py @@ -6,7 +6,7 @@ # import logging -__version__ = '0.3.7.dev0' +__version__ = '0.3.7' class DistlibException(Exception): pass