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 1
1
FROM registry.access.redhat.com/ubi9-minimal:9.6-1747218906
2
2
LABEL maintainer="Mihai Criveti" \
3
3
name="mcp/mcpgateway" \
4
+ version="0.1.0" \
4
5
description="MCP Gateway: An enterprise-ready Model Context Protocol Gateway"
5
6
6
7
ARG PYTHON_VERSION=3.11
Original file line number Diff line number Diff line change @@ -105,7 +105,8 @@ ARG ROOTFS_PATH
105
105
LABEL maintainer="Mihai Criveti" \
106
106
org.opencontainers.image.title="mcp/mcpgateway" \
107
107
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"
109
110
110
111
# ----------------------------------------------------------------------------
111
112
# Copy the entire prepared root filesystem from the builder stage
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- """
2
+ """MCP Gateway - A flexible feature-rich FastAPI-based gateway for the Model Context Protocol (MCP).
3
3
4
4
Copyright 2025
5
5
SPDX-License-Identifier: Apache-2.0
6
6
Authors: Mihai Criveti
7
7
8
8
"""
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