From 78d91a34bb151cc517038133f7a6da12b5bfeaaf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:35:50 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ app/package.json | 2 +- app/src-tauri/Cargo.toml | 2 +- app/src-tauri/tauri.conf.json | 35 +++++++++++++++++++++++++++-------- landingpage/package.json | 2 +- package.json | 2 +- shared/package.json | 2 +- tests/package.json | 2 +- 9 files changed, 42 insertions(+), 15 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b28fea9..7d9b009 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.1" + ".": "0.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fd2fcb..c9d2fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to Recrest are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versioning follows [SemVer](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/SoftVentures/Recrest/compare/recrest-v0.9.1...recrest-v0.10.0) (2026-06-11) + + +### Features + +* **landing:** Enhanced live demonstration & landing page overhaul ([a4c03c7](https://github.com/SoftVentures/Recrest/commit/a4c03c79ef362676094b29992d74a68d40d8db80)) +* **landing:** privacy, accessibility & imprint legal compliance ([848d855](https://github.com/SoftVentures/Recrest/commit/848d85501d8cf280a004cb2361ee162ef6bbb3b5)) + ## [0.9.1] — 2026-06-10 Patch release on top of `0.9.0`: fixes a Windows-only regression in the packaged build and finishes the Windows installer branding. diff --git a/app/package.json b/app/package.json index bae9000..5a1c433 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@recrest/app", - "version": "0.9.1", + "version": "0.10.0", "private": true, "type": "module", "scripts": { diff --git a/app/src-tauri/Cargo.toml b/app/src-tauri/Cargo.toml index a8b2585..db9d0ce 100644 --- a/app/src-tauri/Cargo.toml +++ b/app/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "recrest" -version = "0.9.1" # x-release-please-version +version = "0.10.0" # x-release-please-version description = "Recrest — A lightweight developer dashboard" authors = ["SoftVentures"] edition = "2021" diff --git a/app/src-tauri/tauri.conf.json b/app/src-tauri/tauri.conf.json index 407e45a..06450bb 100644 --- a/app/src-tauri/tauri.conf.json +++ b/app/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Recrest", - "version": "0.9.1", + "version": "0.10.0", "identifier": "eu.softventures.recrest", "build": { "beforeDevCommand": "yarn dev", @@ -34,13 +34,17 @@ "plugins": { "deep-link": { "desktop": { - "schemes": ["recrest"] + "schemes": [ + "recrest" + ] } }, "updater": { "active": true, "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDRCQjM4QkRDQUNBQzc3N0IKUldSN2Q2eXMzSXV6UzA5dVFUZDhaWWl3UGR4TTh6YzFMWEltcXdPbDlsMllLL3dUcXlMMFo1NVoK", - "endpoints": ["https://github.com/SoftVentures/Recrest/releases/latest/download/latest.json"], + "endpoints": [ + "https://github.com/SoftVentures/Recrest/releases/latest/download/latest.json" + ], "dialog": false } }, @@ -63,7 +67,10 @@ "windows": { "nsis": { "displayLanguageSelector": true, - "languages": ["English", "German"], + "languages": [ + "English", + "German" + ], "installerIcon": "icons/windows/icon.ico", "headerImage": "installer-assets/build/nsis-header.bmp", "sidebarImage": "installer-assets/build/nsis-sidebar.bmp" @@ -76,15 +83,27 @@ "macOS": { "minimumSystemVersion": "10.15", "dmg": { - "appPosition": { "x": 180, "y": 170 }, - "applicationFolderPosition": { "x": 480, "y": 170 }, - "windowSize": { "width": 660, "height": 400 }, + "appPosition": { + "x": 180, + "y": 170 + }, + "applicationFolderPosition": { + "x": 480, + "y": 170 + }, + "windowSize": { + "width": 660, + "height": 400 + }, "background": "installer-assets/build/dmg-background.png" } }, "linux": { "deb": { - "depends": ["libwebkit2gtk-4.1-0", "libgtk-3-0"], + "depends": [ + "libwebkit2gtk-4.1-0", + "libgtk-3-0" + ], "section": "devel", "files": { "/usr/bin/recrest-launcher": "resources/recrest-launcher.sh", diff --git a/landingpage/package.json b/landingpage/package.json index f3e5f5b..1091bc1 100644 --- a/landingpage/package.json +++ b/landingpage/package.json @@ -1,6 +1,6 @@ { "name": "@recrest/landingpage", - "version": "0.9.1", + "version": "0.10.0", "private": true, "type": "module", "description": "Recrest — marketing landingpage, deployed to GitHub Pages.", diff --git a/package.json b/package.json index 20f9ac0..7ef26af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "recrest", - "version": "0.9.1", + "version": "0.10.0", "private": true, "description": "Recrest — A lightweight developer dashboard built with Tauri.", "license": "MIT", diff --git a/shared/package.json b/shared/package.json index 350e061..eb2eb7d 100644 --- a/shared/package.json +++ b/shared/package.json @@ -1,6 +1,6 @@ { "name": "@recrest/shared", - "version": "0.9.1", + "version": "0.10.0", "private": true, "type": "module", "main": "dist/index.js", diff --git a/tests/package.json b/tests/package.json index 1543a73..0e4ede9 100644 --- a/tests/package.json +++ b/tests/package.json @@ -1,6 +1,6 @@ { "name": "@recrest/tests", - "version": "0.9.1", + "version": "0.10.0", "private": true, "type": "module", "scripts": {