Skip to content

Commit 019400c

Browse files
committed
chore: Release cluster-insights-mcp-server version 2.0.0
1 parent d0b7a51 commit 019400c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DESCRIPTION="Cluster Insights Engine MCP Server - Model Context Protocol server
77
SOURCE="https://github.com/alpha-hack-program/cluster-insights-mcp-rs.git"
88

99
# Version (managed by cargo-release)
10-
VERSION=1.3.3
10+
VERSION=2.0.0
1111

1212
# Container Configuration
1313
BASE_TAG="9.6"

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cluster-insights-mcp-server"
3-
version = "1.3.3"
3+
version = "2.0.0"
44
edition = "2024"
55

66
[dependencies]

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Build arguments
44
ARG BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal
55
ARG BASE_TAG=9.6
6-
ARG VERSION=1.3.3
6+
ARG VERSION=2.0.0
77
ARG MAINTAINER="Alpha Hack Group <alpha@github.com>"
88
ARG DESCRIPTION="Cluster Insights Engine MCP Server - Model Context Protocol server to check cluster insights"
99
ARG APP_NAME=cluster-insights-mcp-rs

mcpb/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dxt_version": "0.1",
33
"name": "cluster-insights-mcp-server",
44
"display_name": "Cluster Insights MCP Server",
5-
"version": "1.3.3",
5+
"version": "2.0.0",
66
"description": "Kubernetes Cluster Resource Analysis and Management via MCP",
77
"author": {
88
"name": "Carlos Vicens"

src/common/cluster_insights.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ impl ServerHandler for ClusterInsights {
10831083
fn get_info(&self) -> ServerInfo {
10841084
// Read basic information from .env file (replaced by sync script during release)
10851085
let name = "cluster-insights-mcp-rs".to_string();
1086-
let version = "1.3.3".to_string();
1086+
let version = "2.0.0".to_string();
10871087
let title = "Cluster Insights Engine MCP Server".to_string();
10881088
let website_url = "https://github.com/alpha-hack-program/cluster-insights-mcp-rs.git".to_string();
10891089

0 commit comments

Comments
 (0)