Bump version to 1.1.2

This commit is contained in:
GitHub Copilot
2026-01-28 16:52:11 +00:00
parent 3bc77d4a85
commit 14234e2531
10 changed files with 75 additions and 19 deletions
+3
View File
@@ -27,6 +27,7 @@ def test_load_compose_manifest_reads_label():
svc1:
labels:
webterm-command: echo svc1
webterm-theme: nord
svc2:
labels:
- webterm-command=echo svc2
@@ -42,3 +43,5 @@ def test_load_compose_manifest_reads_label():
commands = {a.command for a in apps}
assert slugs == {"svc1", "svc2"}
assert "echo svc1" in commands and "echo svc2" in commands
svc1 = next(app for app in apps if app.slug == "svc1")
assert svc1.theme == "nord"