Skip to content

Commit 12c765c

Browse files
🔖 bump version to 0.10.0 (#36)
1 parent ff0dc81 commit 12c765c

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

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

2727
## [Unreleased]
2828

29+
## [0.10.0]
30+
31+
**🚨 BREAKING RELEASE 🚨** (Again.. sorry!)
32+
2933
After splitting into separate packages in v2025.8.1 for security isolation, we're consolidating back into a single package, for a few reasons:
3034

3135
- It seemed like a good idea, but it's early and the extra complexity adds unnecessary friction
@@ -54,8 +58,8 @@ The GitHub releases were previously using calendar versioning (e.g., v2025.8.1)
5458

5559
## [2025.8.1]
5660

57-
- mcp-django: 0.2.0
58-
- mcp-django-shell: 0.9.0
61+
- [mcp-django: 0.1.0]
62+
- [mcp-django-shell: 0.9.0]
5963

6064
**🚨 BREAKING RELEASE 🚨**
6165

@@ -86,6 +90,7 @@ This should allow for safer production deployments where shell access can be com
8690
- Moved to workspace package under `packages/` directory
8791
- Now distributed as optional extra of mcp-django
8892
- Now only includes the two shell tools
93+
8994
## [0.8.0]
9095

9196
### Added
@@ -177,7 +182,6 @@ This should allow for safer production deployments where shell access can be com
177182
- Josh Thomas <[email protected]> (maintainer)
178183

179184
[unreleased]: https://github.com/joshuadavidthomas/mcp-django/compare/2025.8.1...HEAD
180-
[2025.8.1]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/2025.8.1
181185
[0.1.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.1.0
182186
[0.2.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.2.0
183187
[0.3.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.3.0
@@ -187,3 +191,7 @@ This should allow for safer production deployments where shell access can be com
187191
[0.6.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.6.0
188192
[0.7.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.7.0
189193
[0.8.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.8.0
194+
[mcp-django-shell: 0.9.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-shell-v0.9.0
195+
[mcp-django: 0.1.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/mcp-django-v0.1.0
196+
[2025.8.1]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/v2025.8.1
197+
[0.10.0]: https://github.com/joshuadavidthomas/mcp-django/releases/tag/v0.10.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ readme = "README.md"
8585
# ]]] -->
8686
requires-python = ">=3.10"
8787
# [[[end]]]
88-
version = "0.1.0"
88+
version = "0.10.0"
8989

9090
[project.urls]
9191
Documentation = "https://github.com/joshuadavidthomas/mcp-django#README"

src/mcp_django/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from __future__ import annotations
2+
3+
import importlib.metadata
4+
5+
try:
6+
__version__ = importlib.metadata.version(__name__)
7+
except importlib.metadata.PackageNotFoundError: # pragma: no cover
8+
# editable install
9+
__version__ = "0.0.0"

0 commit comments

Comments
 (0)