From 1b49871ea06db5228d4c81d942541ef646a06163 Mon Sep 17 00:00:00 2001 From: le king fu Date: Sun, 1 Mar 2026 10:17:14 -0500 Subject: [PATCH] =?UTF-8?q?Release=20v0.5.0=20=E2=80=94=20open=20source=20?= =?UTF-8?q?under=20GPL-3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version to 0.5.0 and update CHANGELOG with all unreleased changes including error handling, log viewer, report improvements, and GPL-3.0 license addition. Co-Authored-By: Claude Opus 4.6 --- CHANGELOG.md | 3 +++ CLAUDE.md | 3 ++- package.json | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 769039d..e3c44c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ ## [Unreleased] +## [0.5.0] + ### Added - Error boundary catches React crashes and displays an error page instead of a white screen - Startup timeout (10s) on database connection — shows error page instead of infinite spinner - Error page with "Refresh", "Check for updates", and contact/issue links - Log viewer in settings page — captures console output, filterable by level, copyable, persists across refresh +- GPL-3.0 license — project is now open source ### Changed - Report detail modal: sortable columns — click headers to sort by date, description, or amount (#1) diff --git a/CLAUDE.md b/CLAUDE.md index 33683b1..2e3dbaf 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -9,7 +9,8 @@ **Stockage :** SQLite local (tauri-plugin-sql) **Langues supportées :** Français (FR) et Anglais (EN) **Plateformes :** Windows, Linux -**Version actuelle :** 0.4.7 +**Version actuelle :** 0.5.0 +**Licence :** GPL-3.0-only --- diff --git a/package.json b/package.json index b3cbb75..4be4b4d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "simpl_result_scaffold", "private": true, - "version": "0.4.7", + "version": "0.5.0", "license": "GPL-3.0-only", "type": "module", "scripts": { diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0c4759d..7a9ddb9 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Simpl Resultat", - "version": "0.4.7", + "version": "0.5.0", "identifier": "com.simpl.resultat", "build": { "beforeDevCommand": "npm run dev",