File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,13 +16,32 @@ vMAJOR.MINOR.PATCH
1616
1717### Current Version
1818
19- ** v0.2.28 ** (2026-04-17 )
19+ ** v0.2.38 ** (2026-04-18 )
2020
2121- 0.x series indicates pre-release (experimental)
2222- Will become v1.0.0 when feature-complete
2323
2424---
2525
26+ ## Version Bump Rule
27+
28+ ** Every commit must bump the version number** in:
29+ 1 . ` VERSION ` file (contains just the version string)
30+ 2 . Status bar (displays version)
31+ 3 . Commit message format: ` v{version} ({git_hash}) `
32+
33+ ### When to Increment
34+
35+ | Change Type | Increment |
36+ | ------------| ----------|
37+ | Bug fix | PATCH (+1) |
38+ | New feature | MINOR (+1) |
39+ | Breaking change | MAJOR (+1) |
40+
41+ ** Example:** v0.2.37 → v0.2.38
42+
43+ ---
44+
2645## Git Tags
2746
2847### Purpose
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ std::string EditorApp::get_version() {
167167 } else {
168168 version = " 0.2.37" ;
169169 }
170- return " pCode Editor version 0.2.37 " + version;
170+ return " pCode Editor version 0.2.38 " + version;
171171}
172172
173173// ============================================================================
You can’t perform that action at this time.
0 commit comments