Skip to content

Commit

Permalink
v2.0.0 (#37)
Browse files Browse the repository at this point in the history
* Update setup.py

* Create test_version.py

* Update __init__.py

* Create version.py
  • Loading branch information
gsheni authored Jun 2, 2021
1 parent 7ca8b09 commit 75752bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions alteryx_open_src_update_checker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# flake8: noqa
from .functions import check_version
from .version import __version__
5 changes: 5 additions & 0 deletions alteryx_open_src_update_checker/tests/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from alteryx_open_src_update_checker import __version__


def test_version():
assert __version__ == "2.0.0"
1 change: 1 addition & 0 deletions alteryx_open_src_update_checker/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '2.0.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author='Alteryx, Inc.',
author_email='support@featurelabs.com',
license='BSD 3-clause',
version='1.0.2',
version='2.0.0',
description='an update checker for alteryx open source libraries',
url='https://github.com/FeatureLabs/alteryx-open-src-update-checker/',
classifiers=[
Expand Down

0 comments on commit 75752bd

Please sign in to comment.