From eb917b3bb2087c178c62348181b1a486fa191828 Mon Sep 17 00:00:00 2001 From: Yeison Vargas Date: Mon, 26 Jun 2023 10:20:02 -0500 Subject: [PATCH] Release 0.6.3 --- HISTORY.rst | 6 ++++++ dparse/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 267f362..2e511a9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ======= +0.6.3 (2023-06-26) +------------------ + +* Use the modern tomli/tomllib to parse TOML files. (thanks @mgorny) +* Drop Python 3.5 from our CI. + 0.6.2 (2022-09-19) ------------------ diff --git a/dparse/__init__.py b/dparse/__init__.py index c4d4ee7..4ca42d0 100644 --- a/dparse/__init__.py +++ b/dparse/__init__.py @@ -4,6 +4,6 @@ __author__ = """Jannis Gebauer""" __email__ = 'support@pyup.io' -__version__ = '0.6.2' +__version__ = '0.6.3' from .parser import parse # noqa diff --git a/setup.py b/setup.py index 9d4cd8b..26f2ed5 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='dparse', - version='0.6.2', + version='0.6.3', description="A parser for Python dependency files", long_description=readme + '\n\n' + history, long_description_content_type='text/x-rst',