Skip to content

Commit dbe8a4f

Browse files
committed
Fixes pyproject file and updates version
1 parent 73f0d21 commit dbe8a4f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ docs = [
9595
"mkdocstrings[python]>=0.23.0"
9696
]
9797

98+
[project.scripts]
99+
testteller = "testteller.main:main"
100+
98101
[tool.setuptools.dynamic]
99102
version = {attr = "testteller._version.__version__"}
100103

testteller/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
This is the single source of truth for version information.
44
"""
55

6-
__version__ = "2.0.0"
6+
__version__ = "2.0.1"

testteller/core/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
APP_NAME = "TestTeller"
99
# APP_VERSION is now imported from __init__.py to maintain single source of truth
1010
# Import will be handled by __init__.py
11-
FALLBACK_VERSION = "2.0.0" # Fallback version when _version.py import fails
11+
FALLBACK_VERSION = "2.0.1" # Fallback version when _version.py import fails
1212
# Application Description - Single Source of Truth
1313
APP_DESCRIPTION = "TestTeller: Your Next-Generation AI-Powered Test Agent for Comprehensive Test Case Generation and Test Automation leveraging RAG & GenAI"
1414

0 commit comments

Comments
 (0)