From b2f283e45b87c7fd25e6ea2087ce3c01f0801a8d Mon Sep 17 00:00:00 2001 From: Mithun Gowda B Date: Tue, 15 Jul 2025 18:07:14 +0530 Subject: [PATCH] Update setup.py Signed-off-by: Mithun Gowda B --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 916f753..71f648a 100644 --- a/setup.py +++ b/setup.py @@ -13,10 +13,10 @@ def get_version(): return f.read().strip() except FileNotFoundError: logger.warning("VERSION file not found, using fallback version") - return "0.1.0" + return "3.0.0" except Exception as e: logger.error(f"Error reading VERSION file: {e}") - return "0.1.0" + return "3.0.0" def get_long_description(): """Get long description from README with error handling."""