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
10 changes: 10 additions & 0 deletions release-notes/0.3.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 0.3.3

MCP server
- `create_timesheet` works again. It was rejected by TimePro because the tool never sent a sell price; it now runs through the same create logic as `tp ts create` (rate and sell price, category discovery, location defaults, iteration) and returns the saved entry instead of `null`. If the client has no active rate it returns an error with the `tp rate create` recovery command and never creates a rate itself.
- `get_projects_for_client` no longer returns the blank "Empty - Please add the project" placeholder row, matching `tp project list`.
- Project and rate lookups are shared between the CLI and the MCP server, so both surfaces read the same data.

Behind the scenes
- A regression harness now snapshots the MCP tool list and every tool's output, and runs the CLI and MCP tool against the same fake server to keep them in step. It caught the `create_timesheet` failure above on its first staging run.
- `TIMEPRO_CLI_CONFIG_DIR` overrides the config directory (used by tests; handy for running a second isolated profile).
Comment on lines +8 to +10
2 changes: 1 addition & 1 deletion release-notes/latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void LoadEmbedded_FindsBackfilledReleaseNotes()
{
var catalog = ReleaseNotesCatalog.LoadEmbedded();

catalog.LatestKnown()!.VersionText.Should().Be("0.3.2");
catalog.LatestKnown()!.VersionText.Should().Be("0.3.3");
}

private static ReleaseNotesCatalog Catalog() =>
Expand Down