Skip to content

Commit f4f1e40

Browse files
refactoring
1 parent 8a522d1 commit f4f1e40

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ python -m logic2test out/code2logic/project.c2l.yaml -o out/logic2test/tests/ --
432432
from logic2test import TestGenerator
433433

434434
generator = TestGenerator('out/code2logic/project.c2l.yaml')
435-
result = generator.generate_unit_tests('tests/')
435+
result = generator.generate_unit_tests('out/logic2test/tests/')
436436
print(f"Generated {result.tests_generated} tests")
437437
```
438438

@@ -455,7 +455,7 @@ python -m logic2code out/code2logic/project.c2l.yaml -o out/logic2code/generated
455455
from logic2code import CodeGenerator
456456

457457
generator = CodeGenerator('out/code2logic/project.c2l.yaml')
458-
result = generator.generate('output/')
458+
result = generator.generate('out/logic2code/generated_code/')
459459
print(f"Generated {result.files_generated} files")
460460
```
461461

code2logic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
>>> print(output)
1919
"""
2020

21-
__version__ = "1.0.21"
21+
__version__ = "1.0.22"
2222
__author__ = "Softreck"
2323
__email__ = "info@softreck.dev"
2424
__license__ = "MIT"

logic2code/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
from .generator import CodeGenerator, GeneratorConfig, GenerationResult
1515
from .renderers import PythonRenderer
1616

17-
__version__ = '0.1.3'
17+
__version__ = '0.1.4'
1818
__all__ = ['CodeGenerator', 'GeneratorConfig', 'GenerationResult', 'PythonRenderer']

logic2code/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "logic2code"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Generate source code from Code2Logic output files"
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

logic2test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
from .parsers import LogicParser
1616
from .templates import TestTemplate
1717

18-
__version__ = '0.1.4'
18+
__version__ = '0.1.5'
1919
__all__ = ['TestGenerator', 'GeneratorConfig', 'GenerationResult', 'LogicParser', 'TestTemplate']

logic2test/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "logic2test"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Generate test scaffolds from Code2Logic output files"
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

lolm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
list_available_providers,
6565
)
6666

67-
__version__ = '0.1.3'
67+
__version__ = '0.1.4'
6868
__all__ = [
6969
# Config
7070
'LLMConfig',

lolm/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "lolm"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Lightweight Orchestrated LLM Manager - Multi-provider LLM configuration and management"
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

project.toon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2403,7 +2403,7 @@ D:
24032403
TaskQueue: add_task(1),get_pending(0),get_by_status(1) # Task queue container.
24042404
Project: total_tasks(0) # Project model with nested models.
24052405
tests/samples/sample_javascript.js:
2406-
e: Product,deepClone,debounce,calculateTotal,User,filterBy,fetchData
2406+
e: Product,calculateTotal,User,filterBy,fetchData,deepClone,debounce
24072407
User: constructor(3),getDisplayName(0),deactivate(0)
24082408
Product: constructor(3),addTags(0),isInStock(0),formatPrice(0)
24092409
calculateTotal(items)->None
@@ -2423,7 +2423,7 @@ D:
24232423
insert(table:str)->InsertBuilder
24242424
update(table:str)->UpdateBuilder
24252425
tests/samples/sample_typescript.ts:
2426-
e: groupBy,Product,fetchUser,Nullable,Result,User,filterByStatus,calculateOrderTotal
2426+
e: processOrder,Product,OrderItem,groupBy,calculateOrderTotal,User,Result,filterByStatus
24272427
Repository: add(1),get(1),getAll(0),delete(1),count(0)
24282428
createUser(id: number;name: string;email: string)->User
24292429
calculateOrderTotal(items: OrderItem[])->number

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "code2logic"
7-
version = "1.0.21"
7+
version = "1.0.22"
88
description = "Convert source code to logical representation for LLM analysis"
99
readme = "README.md"
1010
license = "Apache-2.0"
@@ -183,7 +183,7 @@ module = [
183183
ignore_missing_imports = true
184184

185185
[tool.bumpver]
186-
current_version = "1.0.21"
186+
current_version = "1.0.22"
187187
version_pattern = "MAJOR.MINOR.PATCH"
188188
commit = false
189189
tag = false

0 commit comments

Comments
 (0)