From 7028ca8ca36c1d1463bd2e321672c95c098db02a Mon Sep 17 00:00:00 2001 From: mhoennig Date: Thu, 3 Sep 2026 15:50:00 +0200 Subject: [PATCH] Bump version to 1.1.0 for the multi-repo registry deployment Co-Authored-By: Claude Sonnet 5 --- build.gradle.kts | 2 +- src/main/resources/templates/releases.html | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index f5e7b85..68d26f7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ group = "de.hoennig" // bump at least the patch version for every deployment — and only then, not per commit — // so the UI footer (BuildProperties), --version and the release notes identify what is // actually running; a deployment bundles whatever was committed since the last one -version = "1.0.1" +version = "1.1.0" java { toolchain { diff --git a/src/main/resources/templates/releases.html b/src/main/resources/templates/releases.html index 5b19486..19bbc4a 100644 --- a/src/main/resources/templates/releases.html +++ b/src/main/resources/templates/releases.html @@ -7,6 +7,27 @@
+

v1.1.0 — 2026-09-03

+
    +
  • One instance can now serve several repositories (ADR 0009): a ~/.werkator.yml + lists them, and each is worked on through its own RepoContext — checkout, + results, artifact store, and worktrees never share state across repositories. The watcher + polls every registered repository in its own guard, and the executor's + maxConcurrent still applies per (repository, branch), not just + per branch.
  • +
  • Server routes carry the repository as /repos/<name>/… and + /api/repos/<name>/…; the unscoped routes keep meaning the served + repository, so a single-repository installation notices nothing. build, + retry, and status take a --repo option to pick a + registered repository instead of always acting on the current directory.
  • +
  • The system page's resource metrics are sampled and reported per repository instead of + once for the whole instance.
  • +
  • The page title carries a drop-down next to the heading in place of the plain repository + name once more than one repository is registered — picking a different one switches + straight to the same view (Branches, History, …) on it. A single-repository + installation still shows the plain name, unchanged.
  • +
+

v1.0.1 — 2026-08-31

  • The restart button on the Branches view builds the branch's current head