IncludeCPP 4.0.3__py3-none-any.whl → 4.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,164 @@
1
+ # IncludeCPP Changelog
2
+
3
+ ## v4.2.1 (2025-01-08)
4
+
5
+ ### CLI Improvements
6
+ - `--doc` and `--doc "term"` now load from local DOCUMENTATION.md
7
+ - `--changelog` now loads from local CHANGELOG.md
8
+ - Added `--changelog --N` (e.g., `--changelog --5`) for showing N releases
9
+ - Added `--changelog --all` for showing all releases
10
+
11
+ ### Documentation
12
+ - Added comprehensive DOCUMENTATION.md for CLI reference
13
+ - Added CHANGELOG.md for version history
14
+
15
+ ---
16
+
17
+ ## v4.2.0 (2025-01-08)
18
+
19
+ ### Multi-Language Support
20
+ - Added `libinclude("language")` for loading language support modules
21
+ - Added `supports <lang>` keyword for writing in other language syntax
22
+ - Added cross-language instance sharing with `lang$InstanceName` syntax
23
+ - Added language transformers for Python, JavaScript, Java, C#, C++
24
+ - Added default parameter values in CSSL functions
25
+
26
+ ### SDK Packages
27
+ - Added C++ SDK (`sdk/cpp/includecpp.h`)
28
+ - Added Java SDK (`sdk/java/src/com/includecpp/CSSL.java`)
29
+ - Added C# SDK (`sdk/csharp/IncludeCPP.cs`)
30
+ - Added JavaScript SDK (`sdk/javascript/includecpp.js`)
31
+ - Added `includecpp cssl sdk <lang>` command to generate SDKs
32
+
33
+ ### CLI Improvements
34
+ - Added `--doc "searchterm"` for documentation search
35
+ - Added `--changelog --all`, `--changelog --N` for changelog viewing
36
+ - Improved error messages with line context
37
+
38
+ ### Bug Fixes
39
+ - Fixed compound assignment operators in Python transformer (-=, +=, *=, /=)
40
+ - Fixed type annotation stripping in `supports python` blocks
41
+ - Fixed self parameter handling in Python method transformation
42
+
43
+ ---
44
+
45
+ ## v4.1.0 (2024-12-15)
46
+
47
+ ### CodeInfusion System
48
+ - Added `<<==` operator for code injection into functions
49
+ - Added `+<<==` for appending code without replacing
50
+ - Added method appending with `&Class::method` syntax
51
+ - Added `++` append mode for function definitions
52
+
53
+ ### Class Improvements
54
+ - Added `overwrites` keyword for method replacement
55
+ - Added `extends Parent::method` for method-level inheritance
56
+ - Added `super()` and `super::method()` calls
57
+ - Added shuffled returns with `shuffled<T>` type
58
+
59
+ ### New Containers
60
+ - Added `combo<T>` for filter/search operations
61
+ - Added `iterator<T>` for programmable iterators
62
+ - Added `datastruct<T>` universal container
63
+
64
+ ### Python Interop
65
+ - Added `python::pythonize()` for returning CSSL classes to Python
66
+ - Added `python::wrap()` and `python::export()` aliases
67
+ - Added universal instances with `instance<"name">`
68
+
69
+ ---
70
+
71
+ ## v4.0.3 (2024-11-20)
72
+
73
+ ### Universal Instances
74
+ - Added `instance<"name">` for cross-runtime shared containers
75
+ - Added `cssl.getInstance("name")` Python API
76
+ - Added `cssl.createInstance("name")` Python API
77
+ - Added `cssl.deleteInstance("name")` Python API
78
+ - Added method injection into instances with `+<<==`
79
+
80
+ ### Module System
81
+ - Added `CSSL.makemodule()` for creating callable modules
82
+ - Added `CSSL.makepayload()` for payload file registration
83
+ - Added payload binding with `bind=` parameter
84
+
85
+ ---
86
+
87
+ ## v4.0.2 (2024-11-01)
88
+
89
+ ### Simplified API
90
+ - Added `CSSL.run()` as main entry point
91
+ - Added `CSSL.module()` for creating modules from strings
92
+ - Added `CSSL.script()` for inline payload registration
93
+ - Improved parameter handling with `parameter.get()` and `parameter.return()`
94
+
95
+ ### Shared Objects
96
+ - Added `cssl.share(obj, "name")` for Python object sharing
97
+ - Added `$name` syntax for accessing shared objects
98
+ - Changes in CSSL reflect back to Python objects
99
+
100
+ ---
101
+
102
+ ## v4.0.0 (2024-10-15)
103
+
104
+ ### Major Release
105
+ - Complete rewrite of CSSL parser and runtime
106
+ - Added generic container types (`stack<T>`, `vector<T>`, `map<K,V>`)
107
+ - Added class system with constructors and inheritance
108
+ - Added BruteInjection operators (`<==`, `+<==`, `-<==`)
109
+ - Added global variables with `@name` syntax
110
+ - Added captured variables with `%name` syntax
111
+
112
+ ### AI Integration
113
+ - Added `includecpp ai` command group
114
+ - Added AI-assisted code analysis
115
+ - Added AI-powered optimization
116
+ - Added `includecpp ai ask` for project questions
117
+
118
+ ---
119
+
120
+ ## v3.2.0 (2024-09-01)
121
+
122
+ ### CPPY Conversion
123
+ - Added `includecpp cppy convert` command
124
+ - Added Python to C++ conversion
125
+ - Added C++ to Python conversion
126
+ - Added AI-assisted conversion with `--ai` flag
127
+ - Added type mapping tables
128
+
129
+ ### Build Improvements
130
+ - Added `--fast` flag for incremental builds
131
+ - Added object file caching
132
+ - Added SHA256 hash checking for unchanged modules
133
+ - Reduced rebuild time to ~0.4s when unchanged
134
+
135
+ ---
136
+
137
+ ## v3.1.0 (2024-08-01)
138
+
139
+ ### CLI Enhancements
140
+ - Added `includecpp auto` command
141
+ - Added `includecpp fix` for code analysis
142
+ - Added `--verbose` flag for detailed output
143
+ - Added `-j` flag for parallel jobs
144
+
145
+ ### Plugin Format
146
+ - Added `DEPENDS()` for module dependencies
147
+ - Added `TEMPLATE_FUNC()` for template instantiation
148
+ - Added `METHOD_CONST()` for overloaded methods
149
+
150
+ ---
151
+
152
+ ## v3.0.0 (2024-07-01)
153
+
154
+ ### Initial CSSL
155
+ - Added CSSL scripting language
156
+ - Added basic data types and control flow
157
+ - Added functions and basic classes
158
+ - Added Python interop with shared objects
159
+
160
+ ### Core Features
161
+ - C++ to Python binding generation
162
+ - Plugin file format (.cp)
163
+ - CMake-based build system
164
+ - Cross-platform support (Windows, Linux, Mac)