diff --git a/CHANGELOG.fr.md b/CHANGELOG.fr.md index e081f6d..2d7b2b2 100644 --- a/CHANGELOG.fr.md +++ b/CHANGELOG.fr.md @@ -2,6 +2,8 @@ ## [Non publié] +## [0.7.0] - 2026-04-11 + ### Ajouté - CI : nouveau workflow `check.yml` qui exécute `cargo check`/`cargo test` et le build frontend sur chaque push de branche et PR, détectant les erreurs avant le merge plutôt qu'au moment de la release (#60) - Carte de licence dans les Paramètres : affiche l'édition actuelle (Gratuite/Base/Premium), accepte une clé de licence et redirige vers la page d'achat (#47) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9068e03..9312649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.7.0] - 2026-04-11 + ### Added - CI: new `check.yml` workflow runs `cargo check`/`cargo test` and the frontend build on every branch push and PR, catching errors before merge instead of waiting for the release tag (#60) - License card in Settings page: shows the current edition (Free/Base/Premium), accepts a license key, and links to the purchase page (#47) diff --git a/docs/architecture.md b/docs/architecture.md index 3266c19..ad4d8b6 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -1,6 +1,6 @@ # Architecture technique — Simpl'Résultat -> Document mis à jour le 2026-04-10 — Version 0.6.7 +> Document mis à jour le 2026-04-11 — Version 0.7.0 ## Stack technique diff --git a/package.json b/package.json index 06fb457..3c04892 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "simpl_result_scaffold", "private": true, - "version": "0.6.7", + "version": "0.7.0", "license": "GPL-3.0-only", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 41fda00..71d1ae0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simpl-result" -version = "0.6.7" +version = "0.7.0" description = "Personal finance management app" license = "GPL-3.0-only" authors = ["you"] diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9d97e68..1a33e29 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.6.7", + "version": "0.7.0", "identifier": "com.simpl.resultat", "build": { "beforeDevCommand": "npm run dev",