czds

- ICANN Centralized Zone Data Service Tool
git clone git://git.acid.vegas/czds.git
Log | Files | Refs | Archive | README | LICENSE

commit 93d2bec2045f3f396ceee9766918a640ae55470a
parent ab147238ce6672b9f26526b93e2affaf7969e8df
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sun, 23 Mar 2025 14:29:44 -0400

prepare for 1.3.2

Diffstat:
Mczds/__init__.py | 2+-
Mczds/__main__.py | 5+++++
Msetup.py | 2+-

3 files changed, 7 insertions(+), 2 deletions(-)

diff --git 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
@@ -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
@@ -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',