Skip to content

Commit 3fb5834

Browse files
authored
chore: document manifest version sync (#67)
1 parent b498ff6 commit 3fb5834

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ The project should handle natural-language searches and recommendations such as:
5151

5252
## Versioning
5353
- Always bump the version in `pyproject.toml` for any change.
54+
- Mirror the version change in `docker/pyproject.deps.toml` so the Docker
55+
dependency manifest stays consistent with the root project file.
5456
- Update `uv.lock` after version or dependency changes by running `uv lock`.
5557

5658
## Checks

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,13 @@ running in a loop.
8080
### Dependency Layer Workflow
8181

8282
Docker builds now install dependencies using `docker/pyproject.deps.toml`, a
83-
manifest that mirrors the application's runtime requirements without the
84-
`[project]` version field. The `Dockerfile` copies that manifest and `uv.lock`
85-
first, runs `uv sync --no-dev --frozen --manifest-path pyproject.deps.toml`,
86-
and only then copies the rest of the source tree. This keeps the heavy
87-
dependency layer cached even when the application version changes.
83+
manifest that mirrors the application's runtime requirements. Keep the
84+
`[project]` metadata—including the `version`—identical to the root
85+
`pyproject.toml` so `uv sync` can reuse the shared `uv.lock` without
86+
validation errors. The `Dockerfile` copies that manifest and `uv.lock` first,
87+
runs `uv sync --no-dev --frozen --manifest-path pyproject.deps.toml`, and only
88+
then copies the rest of the source tree. This keeps the heavy dependency layer
89+
cached even when the application version changes.
8890

8991
When cutting a release:
9092

docker/pyproject.deps.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-plex"
3-
version = "0.26.33"
3+
version = "0.26.34"
44
requires-python = ">=3.11,<3.13"
55
dependencies = [
66
"fastmcp>=2.11.2",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mcp-plex"
7-
version = "0.26.33"
7+
version = "0.26.34"
88

99
description = "Plex-Oriented Model Context Protocol Server"
1010
requires-python = ">=3.11,<3.13"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)