Prepare MrTrust 0.1.2 release
All checks were successful
Build MrTrust / build (push) Successful in 2m37s

This commit is contained in:
2026-05-16 02:28:20 +02:00
parent 84a5df7216
commit d6e2d5ab52
3 changed files with 7 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ jobs:
shell: bash
run: |
set -euo pipefail
version="0.1.1"
version="0.1.2"
dotnet publish src/MrTrustLauncher.csproj \
--configuration Release \
--runtime win-x64 \
@@ -38,7 +38,7 @@ jobs:
shell: bash
run: |
set -euo pipefail
version="0.1.1"
version="0.1.2"
package_root="dist/MrTrust-${version}"
rm -rf "$package_root" "dist/MrTrust-${version}.zip"
mkdir -p "$package_root"
@@ -54,5 +54,5 @@ jobs:
- name: Upload release artifact
uses: actions/upload-artifact@v3
with:
name: MrTrust-0.1.1
path: dist/MrTrust-0.1.1.zip
name: MrTrust-0.1.2
path: dist/MrTrust-0.1.2.zip

View File

@@ -1,7 +1,8 @@
# Changelog
## Unreleased
## 0.1.2
- Made `MrTrust.exe` a standalone user-facing release artifact.
- Added an autonomous target-project integration runbook for agents.
- Added `mrtrust.integration.json` as a machine-readable integration contract.
- Updated agent-facing documentation to prefer the standalone `MrTrust.exe` integration path.

View File

@@ -69,7 +69,7 @@ Remove the trust certificate:
Build a user-facing ZIP release:
```powershell
.\scripts\New-MrTrustRelease.ps1 -Version 0.1.1
.\scripts\New-MrTrustRelease.ps1 -Version 0.1.2
```
The Gitea workflow `.gitea/workflows/build.yml` builds the Windows launcher EXE on an `ubuntu-latest` runner with .NET Windows cross-targeting, then uploads the ZIP as an artifact.