@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
77---
88
9+ <<<<<<< HEAD
10+ ## [ 1.0.0] - 2026-01-06
11+
12+ ### Added
13+ - ** Object-Oriented Programming** : First-class support for Classes, Objects, Single Inheritance (` extends ` ), and Interfaces.
14+ - ** Keywords** : ` class ` , ` new ` , ` this ` , ` extends ` , ` interface ` , ` static ` .
15+ - ** Runtime** :
16+ - ` ObjClass ` , ` ObjInstance ` , ` ObjBoundMethod ` structures.
17+ - Opcodes: ` OP_CLASS ` , ` OP_METHOD ` , ` OP_INHERIT ` , ` OP_GET_PROPERTY ` , ` OP_SET_PROPERTY ` , ` OP_GET_SUPER ` .
18+ - ** Stability** : Finalized v1.0.0 release.
19+
20+ ### Fixed
21+ - ** Build** : Resolved CMake configuration issues and compilation errors.
22+ - ** VM** : Fixed object instantiation and method binding logic.
23+
924## [ 0.8.0] - 2026-01-04
1025
1126### Added
@@ -52,6 +67,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5267- ** Runtime** :
5368 - Implemented ` OP_USE ` opcode for dynamic module loading.
5469 - Added ` std.io ` and standard library module resolution fixes.
70+ =======
71+ ## [ Unreleased]
72+
73+ ### Added
74+ >>>>>>> fix-ci-build
5575- Comprehensive documentation suite (400+ pages)
5676 - Professional README with architecture diagrams
5777 - Complete ARCHITECTURE.md with compiler pipeline details
@@ -78,8 +98,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7898- Refactor report documenting all changes
7999
80100### Changed
101+ <<<<<<< HEAD
81102- ** CLI** : Updated CLI version to match project version.
82103- ** Build** : Fixed CMake finding LLVM and compiler paths on Windows.
104+ =======
105+ >>>>>>> fix-ci-build
83106- Reorganized repository structure for clarity and scalability
84107- Upgraded CMakeLists.txt to modern best practices
85108- Improved Makefile with multiple build targets
@@ -100,7 +123,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
100123
101124---
102125
126+ <<<<<<< HEAD
103127## [ 0.1.0] - 2024-12-11
128+ =======
129+ ## [ 0.9.0] - 2024-12-11
130+ >>>>>>> fix-ci-build
104131
105132### Initial C-Based Release
106133
@@ -197,7 +224,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
197224- Async/await implementation
198225- Pattern matching
199226- Generic types
227+ <<<<<<< HEAD
200228- Module system (Initial support in v0.5.0)
229+ =======
230+ - Module system
231+ >>>>>>> fix-ci-build
201232- Debugger integration
202233
203234### Phase 4: Ecosystem (Q3 2025)
@@ -230,15 +261,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2302611 . ** Type Checker** : Partial implementation, needs refinement for complex types
2312622 . ** Object System** : Basic inheritance, needs method binding optimization
2322633 . ** Memory Management** : Mark-and-sweep GC not yet implemented
264+ <<<<<<< HEAD
2332654 . ** Module System** : Partial implementation (` use ` keyword support added, std lib in progress)
266+ =======
267+ 4 . ** Module System** : Not yet implemented
268+ >>>>>>> fix-ci-build
2342695 . ** Standard Library** : 44/75 functions (58% complete)
2352706 . ** Error Messages** : Could be more detailed with suggestions
2362717 . ** REPL** : Basic implementation, no history or autocompletion
237272
238273### Workarounds
239274
240275- For GC: Short-lived programs work fine with basic allocation
276+ <<<<<<< HEAD
241277- For modules: Use the new ` use ` keyword or compile with single-file strategy
278+ =======
279+ - For modules: Use single-file programs or compile with preprocessor
280+ >>>>>>> fix-ci-build
242281- For missing functions: Implement in ProXPL or use system() calls
243282
244283---
@@ -339,6 +378,12 @@ This project is licensed under the MIT License.
339378
340379---
341380
342- ** Current Version** : 0.8.0
343- ** Last Updated** : January 04, 2026
381+ <<<<<<< HEAD
382+ ** Current Version** : 1.0.0
383+ ** Last Updated** : January 06, 2026
344384** Next Release** : 1.1.0 (Q1 2026)
385+ =======
386+ ** Current Version** : 0.9.0 (Development)
387+ ** Last Updated** : December 11, 2024
388+ ** Next Release** : 1.0.0 (Q2 2025)
389+ >>>>>>> fix-ci-build
0 commit comments