Skip to content

Commit 168578e

Browse files
committed
feat: Introduce ProXPL VS Code extension and common header, updating project version to 0.4.0.
1 parent e2269ac commit 168578e

5 files changed

Lines changed: 8 additions & 8 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 VERSION 0.3.0)
2+
project(ProXPL VERSION 0.4.0)
33

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1010
[![ProXPL CI](https://github.com/ProgrammerKR/ProXPL/actions/workflows/build.yml/badge.svg)](https://github.com/ProgrammerKR/ProXPL/actions/workflows/build.yml)
11-
[![Version](https://img.shields.io/badge/version-0.2.0-blue.svg)](https://github.com/ProgrammerKR/ProXPL/releases)
11+
[![Version](https://img.shields.io/badge/version-0.4.0-blue.svg)](https://github.com/ProgrammerKR/ProXPL/releases)
1212
[![Platform](https://img.shields.io/badge/platform-win%20%7C%20linux%20%7C%20macos-lightgrey.svg)]()
1313

1414
**Clean Syntax • Static Typing • Stack-Based VM • C-Level Performance**

extension/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.0",
5+
"version": "0.4.0",
66
"publisher": "ProXentix",
77
"repository": {
88
"type": "git",

include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#define PROX_COMMON_H
99

1010
#define PROXPL_VERSION_MAJOR 0
11-
#define PROXPL_VERSION_MINOR 3
11+
#define PROXPL_VERSION_MINOR 4
1212
#define PROXPL_VERSION_PATCH 0
13-
#define PROXPL_VERSION_STRING "0.3.0"
13+
#define PROXPL_VERSION_STRING "0.4.0"
1414
#define PROXPL_VERSION_PRERELEASE ""
1515

1616
#include <stdbool.h>

0 commit comments

Comments
 (0)