Skip to content

Commit

Permalink
v2.0.1 - bug fix in __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 26, 2021
1 parent 764020f commit 5f643dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v2.0.1 (2021-11-25)

* Small bug fix to change the types of functions available in the `__all__` variable to strings

## v2.0.0 (2021-11-25)

* Refactored code
Expand Down
6 changes: 3 additions & 3 deletions pip_tree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pip_tree.tree import generate_pip_tree, get_package_details, get_pip_package_list

__all__ = [
generate_pip_tree,
get_package_details,
get_pip_package_list,
'generate_pip_tree',
'get_package_details',
'get_pip_package_list',
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setuptools.setup(
name='pip-tree',
version='2.0.0',
version='2.0.1',
description='Get the dependency tree of your Python virtual environment via Pip.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 5f643dd

Please sign in to comment.