Skip to content

Commit 2775691

Browse files
committed
chore: bump version to 2.2.9
1 parent c0fda5c commit 2775691

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### Security
2121

22+
## [2.2.9] - 2025-06-02
23+
24+
### Added
25+
26+
### Changed
27+
28+
### Deprecated
29+
30+
### Removed
31+
32+
### Fixed
33+
34+
### Security
35+
2236
## [2.2.7] - 2025-06-02
2337

2438
### Fixed

pyproject.toml

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

55
[project]
66
name = "mockloop-mcp"
7-
version = "2.2.8"
7+
version = "2.2.9"
88
description = "MCP server to generate and run mock APIs from specifications."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -99,7 +99,7 @@ skip_glob = ["src/mockloop_mcp/templates/*"]
9999

100100
[tool.ruff]
101101
line-length = 88
102-
target-version = "py312"
102+
target-version = "2.2.9"
103103
src = ["src", "tests"]
104104
exclude = [
105105
".bzr",
@@ -189,7 +189,7 @@ known-first-party = ["mockloop_mcp"]
189189
force-sort-within-sections = true
190190

191191
[tool.mypy]
192-
python_version = "3.12"
192+
python_version = "2.2.9"
193193
warn_return_any = true
194194
warn_unused_configs = true
195195
warn_redundant_casts = true
@@ -234,7 +234,7 @@ skips = ["B101", "B601"] # Skip assert_used and shell_injection for templates
234234
skips = ["*_test.py", "test_*.py"]
235235

236236
[tool.pytest.ini_options]
237-
minversion = "7.0"
237+
minversion = "2.2.9"
238238
addopts = [
239239
"--strict-markers",
240240
"--strict-config",

src/mockloop_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file makes Python treat the `mockloop_mcp` directory as a package.
22

3-
__version__ = "2.2.8"
3+
__version__ = "2.2.9"
44

55
# Import proxy module components
66
from .proxy import PluginManager, ProxyHandler, AuthHandler, ProxyConfig

0 commit comments

Comments
 (0)