Skip to content

Commit b77e36c

Browse files
refactor(examples): configuration management system
changes: - file: mermaid-init.js area: core added: [container, pre, renderMermaid, codeBlocks, convertMermaidCodeBlocks] stats: lines: "+1269/-28998 (net -27729)" files: 7 complexity: "Stable complexity"
1 parent 37e267f commit b77e36c

File tree

16 files changed

+1297
-29005
lines changed

16 files changed

+1297
-29005
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project.c2l.*
99
project.func.*
1010
project.json
1111
project.yaml
12-
project.toon
12+
!project.toon
1313
project.toon-schema.json
1414
project.logicml.yaml
1515
project.functions.toon

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [1.0.44] - 2026-02-26
2+
3+
### Summary
4+
5+
refactor(examples): configuration management system
6+
7+
### Docs
8+
9+
- docs: update README
10+
11+
### Other
12+
13+
- update .gitignore
14+
- update examples/output/project.toon
15+
- update function.toon
16+
- update project.json
17+
- update project.toon
18+
- config: update project.yaml
19+
- update raport/mermaid-init.js
20+
21+
122
# Changelog
223

324
All notable changes to this project will be documented in this file.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.43
1+
1.0.44

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.43"
21+
__version__ = "1.0.44"
2222
__author__ = "Softreck"
2323
__email__ = "info@softreck.dev"
2424
__license__ = "MIT"

examples/output/project.toon

Lines changed: 1179 additions & 0 deletions
Large diffs are not rendered by default.

function.toon

Lines changed: 0 additions & 1830 deletions
This file was deleted.

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.43'
17+
__version__ = '1.0.44'
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.43'
18+
__version__ = '1.0.44'
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.43'
79+
__version__ = '1.0.44'
8080
__all__ = [
8181
# Config
8282
'LLMConfig',

0 commit comments

Comments
 (0)