Skip to content

Commit c472e6e

Browse files
🔖 2025.8.1: bump mcp-django, mcp-django-shell (#31)
1 parent 2ccf220 commit c472e6e

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.bin/bump.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,11 +439,11 @@ def bump(
439439
pkg_list = ", ".join(
440440
"mcp-django" if p == "root" else p for p, _, _ in bumps_to_make
441441
)
442-
commit_msg = f"bump versions for {pkg_list}"
442+
commit_msg = f"bump {pkg_list}"
443443

444444
# Add CalVer to commit message if we have one
445445
if calver_tag:
446-
commit_msg = f":bookmark: release {calver_tag}: {commit_msg}"
446+
commit_msg = f":bookmark: {calver_tag}: {commit_msg}"
447447
else:
448448
commit_msg = f":bookmark: {commit_msg}"
449449

.github/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025.8.1

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ For multi-package releases, use package names as subsections:
2626

2727
## [Unreleased]
2828

29+
## [2025.8.1]
30+
31+
- mcp-django: 0.2.0
32+
- mcp-django-shell: 0.9.0
33+
2934
**🚨 BREAKING RELEASE 🚨**
3035

3136
This release restructures the project from a single package to a workspace with multiple packages for better separation of concerns.
@@ -55,7 +60,6 @@ This should allow for safer production deployments where shell access can be com
5560
- Moved to workspace package under `packages/` directory
5661
- Now distributed as optional extra of mcp-django
5762
- Now only includes the two shell tools
58-
5963
## [0.8.0]
6064

6165
### Added
@@ -146,7 +150,8 @@ This should allow for safer production deployments where shell access can be com
146150

147151
- Josh Thomas <[email protected]> (maintainer)
148152

149-
[unreleased]: https://github.com/joshuadavidthomas/mcp-django/compare/mcp-django-shell-v0.8.0...HEAD
153+
[unreleased]: https://github.com/joshuadavidthomas/mcp-django/compare/2025.8.1...HEAD
154+
[2025.8.1]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/2025.8.1
150155
[0.1.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.1.0
151156
[0.2.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.2.0
152157
[0.3.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.3.0

packages/mcp-django-shell/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies = [
5454
description = "MCP server providing a stateful Django shell for LLM assistants."
5555
name = "mcp-django-shell"
5656
readme = "README.md"
57-
version = "0.8.0"
57+
version = "0.9.0"
5858
requires-python = ">=3.10"
5959

6060
[project.urls]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ dependencies = [
7272
description = "A Model Context Protocol (MCP) server for Django integration with LLM assistants."
7373
name = "mcp-django"
7474
readme = "README.md"
75-
version = "0.1.0a1"
75+
version = "0.1.0"
7676
requires-python = ">=3.10"
7777

7878
[project.optional-dependencies]
@@ -108,7 +108,7 @@ fail_under = 100
108108
[tool.coverage.run]
109109
omit = [
110110
"*/migrations/*",
111-
"packages/mcp-django-shell/src/mcp_django_shell/management/commands/mcp_shell.py",
111+
"src/mcp_django/management/commands/mcp.py",
112112
"src/mcp_django/__main__.py",
113113
"src/mcp_django/_typing.py",
114114
"tests/*"

0 commit comments

Comments
 (0)