Skip to content

Commit fb5dba7

Browse files
committed
Release v2.2.7
- Fix version synchronization across project files - Update version consistency between pyproject.toml and __init__.py - Maintenance release with version alignment improvements
1 parent 97b8767 commit fb5dba7

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.7] - 2025-06-02
9+
10+
### Fixed
11+
- Version synchronization across project files
12+
- Updated version consistency between pyproject.toml and __init__.py
13+
14+
### Changed
15+
- Maintenance release with version alignment improvements
16+
817
## [2.2.6] - 2025-06-01
918

1019
### Added
@@ -121,7 +130,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
121130
- Integrated multiple security analysis tools (Bandit, Safety, Semgrep, pip-audit)
122131
- Configured secure coding practices and validation
123132

124-
[Unreleased]: https://github.com/mockloop/mockloop-mcp/compare/v2.2.5...HEAD
133+
[Unreleased]: https://github.com/mockloop/mockloop-mcp/compare/v2.2.7...HEAD
134+
[2.2.7]: https://github.com/mockloop/mockloop-mcp/releases/tag/v2.2.7
135+
[2.2.6]: https://github.com/mockloop/mockloop-mcp/releases/tag/v2.2.6
125136
[2.2.5]: https://github.com/mockloop/mockloop-mcp/releases/tag/v2.2.5
126137
[2.2.4]: https://github.com/mockloop/mockloop-mcp/releases/tag/v2.2.4
127138
[2.2.3]: https://github.com/mockloop/mockloop-mcp/releases/tag/v2.2.3

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 = "mockloop-mcp"
7-
version = "2.2.6"
7+
version = "2.2.7"
88
description = "MCP server to generate and run mock APIs from specifications."
99
readme = "README.md"
1010
requires-python = ">=3.10"

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.1"
3+
__version__ = "2.2.7"
44

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

0 commit comments

Comments
 (0)