Skip to content

Commit e8f3888

Browse files
committed
v0.2.38 (f4a0f20): Update versioning rules - every commit bumps version
1 parent f4a0f20 commit e8f3888

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

docs/versioning.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/editor_app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
// ============================================================================

0 commit comments

Comments
 (0)