Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to jobd. Format roughly follows [Keep a Changelog](https://k

## [Unreleased]

## [0.5.41] — 2026-08-31

### Fixed

- **`job projects set/nudge` no longer crashes when the name folds.** v0.5.40 taught
the write path to fold a spelling onto the registered project, but `POST
/projects/{name}` kept returning the bare table, so the CLI went on indexing it by
the name the user typed — `job projects set arf_promoter 65` wrote `arf-promoter`
and then died with `KeyError` on the echo, reporting a traceback for a write that
had already succeeded. Both write endpoints now report the project they landed on
(`{"project": ..., "projects": {...}}`), matching what `/resolve` already did for
the read path, and the CLI says when a name was folded rather than printing the
typed spelling beside another project's priority. A new CLI is tolerant of an older
broker's bare-table reply.

## [0.5.40] — 2026-08-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ identifiers:
repository-code: "https://github.com/musharna/jobd"
url: "https://pypi.org/project/jobd/"
license: MIT
version: 0.5.40
version: 0.5.41
date-released: "2026-08-30"
keywords:
- job-scheduler
Expand Down
10 changes: 0 additions & 10 deletions changelog.d/projects-write-reports-resolved-name.fixed.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jobd"
version = "0.5.40"
version = "0.5.41"
description = "Self-hostable GPU-aware job broker for your own machines, with native MCP/agent integration"
readme = "README.md"
license = { text = "MIT" }
Expand Down
6 changes: 3 additions & 3 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"url": "https://github.com/musharna/jobd",
"source": "github"
},
"version": "0.5.40",
"version": "0.5.41",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "jobd",
"version": "0.5.40",
"version": "0.5.41",
"runtimeHint": "uvx",
"runtimeArguments": [
{ "type": "positional", "value": "--from", "valueHint": "from-flag" },
Expand Down Expand Up @@ -42,7 +42,7 @@
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"tool": "manual",
"version": "0.5.40"
"version": "0.5.41"
}
}
}
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading