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"