File tree Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = v0.1.0
3+ commit = False
4+ tag = False
5+ search = version = {current_version}
6+ replace = version = {new_version}
7+
8+ [bumpversion:file:mcpgateway/__init__.py]
9+ search = __version__ = " {current_version}"
10+ replace = __version__ = " {new_version}"
11+
12+ [bumpversion:file:Containerfile]
13+ search = version =" {current_version}"
14+ replace = version =" {new_version}"
15+
16+ [bumpversion:file:Containerfile.lite]
17+ search = version =" {current_version}"
18+ replace = version =" {new_version}"
19+
20+ [bumpversion:file:pyproject.toml]
21+ search = version = " {current_version}"
22+ replace = version = " {new_version}"
Original file line number Diff line number Diff line change 11FROM registry.access.redhat.com/ubi9-minimal:9.6-1747218906
22LABEL maintainer="Mihai Criveti" \
33 name="mcp/mcpgateway" \
4+ version="0.1.0" \
45 description="MCP Gateway: An enterprise-ready Model Context Protocol Gateway"
56
67ARG PYTHON_VERSION=3.11
Original file line number Diff line number Diff line change @@ -105,7 +105,8 @@ ARG ROOTFS_PATH
105105LABEL maintainer="Mihai Criveti" \
106106 org.opencontainers.image.title="mcp/mcpgateway" \
107107 org.opencontainers.image.description="MCP Gateway: An enterprise-ready Model Context Protocol Gateway" \
108- org.opencontainers.image.licenses="Apache-2.0"
108+ org.opencontainers.image.licenses="Apache-2.0" \
109+ org.opencontainers.image.version="0.1.0"
109110
110111# ----------------------------------------------------------------------------
111112# Copy the entire prepared root filesystem from the builder stage
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2- """
2+ """MCP Gateway - A flexible feature-rich FastAPI-based gateway for the Model Context Protocol (MCP).
33
44Copyright 2025
55SPDX-License-Identifier: Apache-2.0
66Authors: Mihai Criveti
77
88"""
9+
10+ __author__ = "Mihai Criveti"
11+ __copyright__ = "Copyright 2025"
12+ __license__ = "Apache 2.0"
13+ __version__ = "0.1.0"
14+ __description__ = "IBM Consulting Assistants - Extensions API Library"
15+ __url__ = "https://ibm.github.io/mcp-context-forge/"
16+ __download_url__ = "https://github.com/IBM/mcp-context-forge"
17+ __packages__ = ["mcpgateway" ]
You can’t perform that action at this time.
0 commit comments