Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yeisonvargasf committed Sep 9, 2022
1 parent f281235 commit a8a537d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
History
=======

0.6.0 (2022-09-09)
------------------

* Adds support for parsing poetry.lock files
* Adds a way to resolve all the linked dependencies in one Dependency File
* Throws exceptions if found in the parsing process (This may be a breaking change)

0.5.2 (2022-08-09)
------------------

Expand Down
2 changes: 1 addition & 1 deletion dparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

__author__ = """Jannis Gebauer"""
__email__ = '[email protected]'
__version__ = '0.5.2'
__version__ = '0.6.0'

from .parser import parse # noqa
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='dparse',
version='0.5.2',
version='0.6.0',
description="A parser for Python dependency files",
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[tox]
envlist = py35, py36, py37, py38, flake8
envlist = py36, py37, py38, py39, py310, flake8
isolated_build = true

[travis]
python =
3.10: py310
3.9: py39
3.8: py38
3.7: py37
3.6: py36
3.5: py35

[testenv:flake8]
basepython=python3
Expand Down

0 comments on commit a8a537d

Please sign in to comment.