Skip to content

Commit 8499a6d

Browse files
committed
[FIX] Version
1 parent 5cc7e1b commit 8499a6d

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.env.sample

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
112110
CONSOLE_LOG_LEVEL=WARNING # Console output level
113111
FILE_LOG_LEVEL=INFO # File logging level

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ai-doc-gen"
3-
version = "1.0.0"
3+
version = "1.2.0"
44
description = "AI-powered code documentation generator that analyzes repositories and creates comprehensive documentation"
55
authors = [{ name = "Milad Noroozi", email = "norooziosos@gmail.com" }]
66
requires-python = ">=3.13,<3.14"

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.2.0"

src/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2526
ANALYZER_LLM_MODEL = os.environ["ANALYZER_LLM_MODEL"]
@@ -60,7 +61,6 @@ def str_to_bool(value: str) -> bool:
6061
# General
6162
ENVIRONMENT = os.getenv("ENVIRONMENT", "development")
6263

63-
VERSION = os.getenv("APP_VERSION", "1.0.0")
6464

6565
CONSOLE_LOG_LEVEL = getattr(logging, os.getenv("CONSOLE_LOG_LEVEL", "DEBUG").upper())
6666
FILE_LOG_LEVEL = getattr(logging, os.getenv("FILE_LOG_LEVEL", "INFO").upper())

0 commit comments

Comments
 (0)