Skip to content

Commit 849921f

Browse files
committed
feat: Update project to 0.7.0-pre, add VS Code extension configuration, and move repro files to a new test directory.
1 parent b99070e commit 849921f

File tree

10 files changed

+11
-5
lines changed

10 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
---
88

9+
## [0.7.0-pre] - 2026-01-04
10+
11+
### Added
12+
- Pre-release build configuration for version 0.7.0.
13+
- Updated version strings across the codebase.
14+
915
## [0.5.0-pre] - 2026-01-02
1016

1117
### Added

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

include/common.h

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

1010
#define PROXPL_VERSION_MAJOR 0
11-
#define PROXPL_VERSION_MINOR 6
11+
#define PROXPL_VERSION_MINOR 7
1212
#define PROXPL_VERSION_PATCH 0
13-
#define PROXPL_VERSION_STRING "0.6.0"
14-
#define PROXPL_VERSION_PRERELEASE ""
13+
#define PROXPL_VERSION_STRING "0.7.0-pre"
14+
#define PROXPL_VERSION_PRERELEASE "-pre"
1515

1616
#include <stdbool.h>
1717
#include <stddef.h>

setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "ProXPL"
5-
#define MyAppVersion "0.6.0"
5+
#define MyAppVersion "0.7.0-pre"
66
#define MyAppPublisher "ProXentix"
77
#define MyAppURL "https://github.com/ProgrammerKR/ProXPL"
88
#define MyAppExeName "proxpl.exe"
File renamed without changes.

0 commit comments

Comments
 (0)