From 459be2ae78a43c397de4fbfa3969e03f5189394a Mon Sep 17 00:00:00 2001 From: chouzz Date: Thu, 25 Dec 2025 21:30:38 +0800 Subject: [PATCH] Release v1.1.1: Add optional port support to save_server tool - Add optional port parameter to save_server tool for custom SSH ports - Update host store to persist and manage port configuration - Build and tag v1.1.1 --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a7cb50..70cc6cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2025-12-25 + +### Added +- Optional `port` parameter to `save_server` tool for specifying custom SSH ports +- Port validation and storage support in host store configuration + +### Changed +- Enhanced `save_server` tool to accept optional port parameter (defaults to 22) +- Updated host store to persist and manage port configuration for saved servers + ## [1.1.0] - 2025-12-24 ### Added diff --git a/pyproject.toml b/pyproject.toml index 3a8c6a0..372cfd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "remoteshell-mcp" -version = "1.1.0" +version = "1.1.1" description = "MCP server for managing SSH connections and executing remote commands" readme = "README.md" requires-python = ">=3.11"