Skip to content

Commit 1a3b7f4

Browse files
refactor(None): configuration management system
stats: lines: "+1/-1 (net +0)" files: 1 complexity: "Stable complexity"
1 parent 3c70f41 commit 1a3b7f4

File tree

9 files changed

+19
-8
lines changed

9 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [1.0.36] - 2026-02-25
2+
3+
### Summary
4+
5+
refactor(None): configuration management system
6+
7+
### Other
8+
9+
- update project.functions.toon
10+
11+
112
## [1.0.35] - 2026-02-24
213

314
### Summary

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.35
1+
1.0.36

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.35"
21+
__version__ = "1.0.36"
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__ = '1.0.35'
17+
__version__ = '1.0.36'
1818
__all__ = ['CodeGenerator', 'GeneratorConfig', 'GenerationResult', 'PythonRenderer']

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__ = '1.0.35'
18+
__version__ = '1.0.36'
1919
__all__ = ['TestGenerator', 'GeneratorConfig', 'GenerationResult', 'LogicParser', 'TestTemplate']

lolm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
)
7777
from .clients import LLMRateLimitError
7878

79-
__version__ = '1.0.35'
79+
__version__ = '1.0.36'
8080
__all__ = [
8181
# Config
8282
'LLMConfig',

project.functions.toon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project: code2logic
2-
generated: "2026-02-25T09:54:12.851992"
2+
generated: "2026-02-25T09:57:07.552307"
33
modules[296]{path,lang,items}:
44
multilang_reproduction_tester.py,py,28
55
universal_validator.py,py,23

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.35"
7+
version = "1.0.36"
88
description = "Code2Logic - Source code to logical representation converter for LLM analysis, featuring Tree-sitter parsing, dependency graph analysis, and multi-language support."
99
readme = "README.md"
1010
license = "Apache-2.0"

tests/samples/sample_reexport/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"ProcessingError",
1919
]
2020

21-
__version__ = "1.0.35"
21+
__version__ = "1.0.36"

0 commit comments

Comments
 (0)