Skip to content

Commit 1af281f

Browse files
committed
Updated version to v1.1.0 form v1.0.0 stable
1 parent 50ccbff commit 1af281f

8 files changed

Lines changed: 21 additions & 16 deletions

File tree

CHANGELOG.md

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

77
---
88

9+
## [1.1.0] - 2026-01-11
10+
11+
### Changed
12+
- **Versioning**: Updated project version to 1.1.0 across the entire codebase.
13+
914
## [1.0.0] - 2026-01-06
1015

1116
### Added
@@ -353,6 +358,6 @@ This project is licensed under the MIT License.
353358

354359
---
355360

356-
**Current Version**: 1.0.0
357-
**Last Updated**: January 06, 2026
358-
**Next Release**: 1.1.0 (Q1 2026)
361+
**Current Version**: 1.1.0
362+
**Last Updated**: January 11, 2026
363+
**Next Release**: 1.2.0 (Q1 2026)

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 1.0.0 LANGUAGES C CXX)
2+
project(ProXPL VERSION 1.1.0 LANGUAGES C CXX)
33

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

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Generated documentation will be in build/docs/
33

44
PROJECT_NAME = ProXPL
5-
PROJECT_NUMBER = 0.7.0-pre
5+
PROJECT_NUMBER = 1.1.0
66
PROJECT_BRIEF = "A Modern Programming Language Compiler"
77
PROJECT_LOGO =
88

README.md

Lines changed: 6 additions & 6 deletions
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-1.0.0-blue.svg)](https://github.com/ProgrammerKR/ProXPL/releases)
11+
[![Version](https://img.shields.io/badge/version-1.1.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

@@ -349,7 +349,7 @@ prm remove old-package
349349
```toml
350350
[package]
351351
name = "my-web-server"
352-
version = "1.0.0"
352+
version = "1.1.0"
353353
authors = ["Your Name <you@example.com>"]
354354
edition = "2025"
355355
description = "A fast web server built with ProXPL"
@@ -535,10 +535,10 @@ See [BENCHMARKS.md](BENCHMARKS.md) for detailed performance comparisons.
535535
- **v0.8.0**: Advanced memory management, closures, upvalues. ✅
536536
- **v0.9.0**: Standard Library (fs, time, gc), IO improvements. ✅
537537
- **v1.0.0 (Current)**:
538-
- **Object-Oriented Programming**: Classes, Methods, Inheritance, Properties.
539-
- **Keywords**: `class`, `new`, `this`, `extends`, `interface`.
540-
- **Runtime**: Optimized VM with Object Support.
541-
- **v1.1.0** (Planned):
538+
- **Object-Oriented Programming**: Classes, Methods, Inheritance, Properties.
539+
- **Keywords**: `class`, `new`, `this`, `extends`, `interface`.
540+
- **Runtime**: Optimized VM with Object Support.
541+
- **v1.1.0** (Current):
542542
- Advanced Strings/Lists.
543543
- Exception Handling (`try`/`catch`).
544544
- Module System refinements.

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": "1.0.0",
5+
"version": "1.1.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 1
11-
#define PROXPL_VERSION_MINOR 0
11+
#define PROXPL_VERSION_MINOR 1
1212
#define PROXPL_VERSION_PATCH 0
13-
#define PROXPL_VERSION_STRING "1.0.0"
13+
#define PROXPL_VERSION_STRING "1.1.0"
1414
#define PROXPL_VERSION_PRERELEASE ""
1515

1616
#include <stdbool.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.7.0-pre"
5+
#define MyAppVersion "1.1.0"
66
#define MyAppPublisher "ProXentix"
77
#define MyAppURL "https://github.com/ProgrammerKR/ProXPL"
88
#define MyAppExeName "proxpl.exe"

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": "0.5.1",
3+
"version": "1.1.0",
44
"description": "Professional CLI tool for ProXPL",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)