From 9938164c7a2ea3af523c13c2e0f3f4aa95789dd5 Mon Sep 17 00:00:00 2001 From: mixeme Date: Thu, 18 Jun 2026 22:42:42 +0300 Subject: [PATCH] Update changelog for 0.3.3: Phase 1 refactoring complete --- docs/CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ffaa0d1..4a7905a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,19 @@ All notable GoSentry changes are recorded in this file. +## 0.3.3 - 2026-06-18 + +- Completed Phase 1 refactoring: split the flat `src/core` package into specialized, focused packages: + - `src/domain` for pure types (Job, RunRecord, Config) + - `src/storage` for persistence (Load/Save, Paths, YAML helpers) + - `src/runner` for job execution (RunJob orchestration, logging, exit codes) + - `src/scheduler` for timing loop + - `src/platform/winproc` for cross-platform hidden window configuration + - `src/platform/autostart` for system autostart integration + - `src/platform/desktop` for desktop environment integration + - `src/app` for application-level code (Version, future Service layer) +- No observable behavior changes; internal structure improvements only. + ## 0.3.1 - 2026-06-17 - Changed startup timing in History to measure until the main window is actually shown instead of stopping during UI construction.