diff --git a/czds/__init__.py b/czds/__init__.py index 72531f5..a84cf7f 100644 --- a/czds/__init__.py +++ b/czds/__init__.py @@ -5,7 +5,7 @@ from .client import CZDS -__version__ = '1.3.1' +__version__ = '1.3.2' __author__ = 'acidvegas' __email__ = 'acid.vegas@acid.vegas' __github__ = 'https://github.com/acidvegas/czds' \ No newline at end of file diff --git a/czds/__main__.py b/czds/__main__.py index 33b653f..ce1301f 100644 --- a/czds/__main__.py +++ b/czds/__main__.py @@ -10,6 +10,11 @@ import os from .client import CZDS +from dotenv import load_dotenv + + +load_dotenv() + async def main(): '''Entry point for the command line interface''' diff --git a/setup.py b/setup.py index b64210a..745c154 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('README.md', 'r', encoding='utf-8') as fh: setup( name='czds-api', - version='1.3.1', + version='1.3.2', author='acidvegas', author_email='acid.vegas@acid.vegas', description='ICANN API for the Centralized Zones Data Service',