File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,6 @@ GITLAB_OAUTH_TOKEN=YOUR_GITLAB_TOKEN_HERE # GitLab access token with repo permis
106106# 📊 LOGGING & DEBUGGING
107107# ============================================================================
108108
109- APP_VERSION = 1.1.0 # Application version for tracking
110-
111109# Logging Configuration
112110CONSOLE_LOG_LEVEL = WARNING # Console output level
113111FILE_LOG_LEVEL = INFO # File logging level
Original file line number Diff line number Diff line change 11[project ]
22name = " ai-doc-gen"
3- version = " 1.0 .0"
3+ version = " 1.2 .0"
44description = " AI-powered code documentation generator that analyzes repositories and creates comprehensive documentation"
55authors = [{ name = " Milad Noroozi" , email = " norooziosos@gmail.com" }]
66requires-python = " >=3.13,<3.14"
Original file line number Diff line number Diff line change 1- __version__ = "1.0 .0"
1+ __version__ = "1.2 .0"
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ def str_to_bool(value: str) -> bool:
2020 else :
2121 raise ValueError (f"Invalid boolean value: { value } " )
2222
23+ VERSION = os .getenv ("APP_VERSION" , "1.2.0" )
2324
2425# Analyzer
2526ANALYZER_LLM_MODEL = os .environ ["ANALYZER_LLM_MODEL" ]
@@ -60,7 +61,6 @@ def str_to_bool(value: str) -> bool:
6061# General
6162ENVIRONMENT = os .getenv ("ENVIRONMENT" , "development" )
6263
63- VERSION = os .getenv ("APP_VERSION" , "1.0.0" )
6464
6565CONSOLE_LOG_LEVEL = getattr (logging , os .getenv ("CONSOLE_LOG_LEVEL" , "DEBUG" ).upper ())
6666FILE_LOG_LEVEL = getattr (logging , os .getenv ("FILE_LOG_LEVEL" , "INFO" ).upper ())
You can’t perform that action at this time.
0 commit comments