chore(release): bump version to 5.5.5

Move shell layout fixes from [Unreleased] to CHANGELOG [5.5.5].
Sync BUILD_CONFIGURATION.md version code example and setup.py snippet
with setup.py (single source of truth).
This commit is contained in:
Dries Peeters
2026-05-12 20:20:23 +02:00
parent 4514e1883e
commit 0d9e588597
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ All build scripts automatically sync the version before building.
**Version Code Calculation:**
- Android version code is calculated as: `major * 10000 + minor * 100 + patch`
- Example: Version `5.5.4` → version code `50504`
- Example: Version `5.5.5` → version code `50505`
**Build Scripts:**
- `scripts/build-mobile.bat` (Windows)
@@ -184,7 +184,7 @@ To update the version for all applications:
```python
setup(
name='timetracker',
version='5.5.4', # Update here
version='5.5.5', # Update here
...
)
```