Skip to content

Commit d1753b9

Browse files
committed
feat: Add core interpreter logic with REPL, file execution, type checking, and initial build system setup.
1 parent 6103607 commit d1753b9

6 files changed

Lines changed: 11 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(ProXPL)
2+
project(ProXPL VERSION 0.3.0)
33

44
# Enable C and C++
55
enable_language(C CXX)

docs/VERSIONING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ProXPL Versioning and Release Guide
22

3-
**Current Version: 1.0.0**
3+
**Current Version: 0.3.0**
44
**Release Date: December 2024**
55

66
This document describes the versioning strategy, semantic versioning policy, and release procedures for ProXPL.

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "proxpl",
33
"displayName": "ProXPL Language Support",
44
"description": "Syntax highlighting and language support for the ProXPL programming language",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"publisher": "ProXentix",
77
"repository": {
88
"type": "git",

include/common.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
#ifndef PROX_COMMON_H
88
#define PROX_COMMON_H
99

10+
#define PROXPL_VERSION_MAJOR 0
11+
#define PROXPL_VERSION_MINOR 3
12+
#define PROXPL_VERSION_PATCH 0
13+
#define PROXPL_VERSION_STRING "0.3.0"
14+
#define PROXPL_VERSION_PRERELEASE ""
15+
1016
#include <stdbool.h>
1117
#include <stddef.h>
1218
#include <stdint.h>

src/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "proxpl-cli",
3-
"version": "1.0.0",
3+
"version": "0.3.0",
44
"description": "Professional CLI tool for ProXPL",
55
"main": "index.js",
66
"bin": {

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void registerStdLib(VM* vm);
3030
static void repl() {
3131
char line[1024];
3232

33-
printf("ProXPL v0.2.0 REPL\n");
33+
printf("ProXPL v" PROXPL_VERSION_STRING " REPL\n");
3434
printf("Type 'exit' to quit\n\n");
3535

3636
for (;;) {

0 commit comments

Comments
 (0)