Skip to content

Commit 6b7b994

Browse files
committed
Version bump
1 parent 142129d commit 6b7b994

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,3 +451,4 @@ PROJECT_ANALYSIS.md
451451
3.project_analysis.py
452452
.(φ)/conv.φ
453453
/.(φ)
454+
3.project_analysis.py

3.project_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Commercial use requires a paid license. See link for details.
44
import os
55

6-
SEPARATE_FILES = False
6+
SEPARATE_FILES = True
77
INCLUDE_PATHS = ['src', 'pyproject.toml', 'LICENSE', 'rust_scripts', '.(φ)/benchmark_results/20250823/03']
88
EXCLUDE_PATTERNS = ['phicode.egg-info', '__pycache__', '.(φ)cache', '.pypirc']
99
OUTPUT_DIR = '.GENERATIONS'

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<img src="https://banes-lab.com/assets/images/banes_lab/700px_Main_Animated.gif" width="100" alt="Banes Lab" />
66

7-
**Python execution engine with caching and import extensions**
7+
**Python execution engine with daemons, caching and import extensions**
88

99
[![Python](https://img.shields.io/badge/Python-v3.8%2B-blue.svg)](https://python.org)
1010
[![PyPy Supported](https://img.shields.io/badge/PyPy-Supported-green.svg)](https://pypy.org)
@@ -17,12 +17,11 @@
1717
[![VS Code Extension Installs](https://img.shields.io/visual-studio-marketplace/i/Banes-Lab.phicode.svg?label=VS+Code+Installs)](https://marketplace.visualstudio.com/items?itemName=Banes-Lab.phicode)
1818

1919

20-
2120
</div>
2221

2322
## Overview
2423

25-
Phicode Engine runs Python modules through a runtime with robust bytecode caching, runtime management and import system modifications. It executes standard Python code with custom syntax support.
24+
Phicode Engine executes Python modules through an optimized runtime featuring robust and self-healing caching mechanisms, automatic interpreter optimization, and modified import system. It supports standard Python with optional custom syntax transpilation. The integrated Phiemon daemon system provides production-ready process management with crash recovery and multi-daemon support.
2625

2726
## Project Philosophy
2827

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "phicode"
7-
version = "2.5.1"
8-
description = "(φ) PHICODE Runtime Engine — Optimized production engine (CPython/PyPy Supported)"
7+
version = "2.6.0"
8+
description = "(φ) Phicode Runtime Engine — Optimized for stability under load (CPython/PyPy Supported)"
99
readme = "README.md"
1010
license = {file = "LICENSE"}
1111
authors = [

src/phicode_engine/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55

66
# Versioning
7-
PHICODE_VERSION = '2.5.1'
7+
PHICODE_VERSION = '2.6.0'
88

99
PHIRUST_VERSION = '1.0.0'
1010

0 commit comments

Comments
 (0)