diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 45f2163..9007059 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.13" + ".": "0.2.14" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f096bf3..aabef11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,38 @@ 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). +## [0.2.14](https://github.com/QuantGeekDev/mcp-framework/compare/mcp-framework-v0.2.13...mcp-framework-v0.2.14) (2025-06-16) + + +### Features + +* add .gitignore on project creation ([f8b6ea6](https://github.com/QuantGeekDev/mcp-framework/commit/f8b6ea6f8ce8e51471004c05778516b71d1f0235)) +* add .gitignore on project creation ([87ed7de](https://github.com/QuantGeekDev/mcp-framework/commit/87ed7de1816dd8c93be7245a8ede636ee8d300c7)) +* add BaseLoader ([b725f84](https://github.com/QuantGeekDev/mcp-framework/commit/b725f844b25bf9da13018c758f0efc347fe6f91b)) +* add license ([53cfb2e](https://github.com/QuantGeekDev/mcp-framework/commit/53cfb2ebe6d5120da99b906a7f91bb7f6b74b863)) +* add license ([a88663a](https://github.com/QuantGeekDev/mcp-framework/commit/a88663a45f9cecd86e039d6fc2eca85035776c65)) +* add nested tool loading ([5fb42e6](https://github.com/QuantGeekDev/mcp-framework/commit/5fb42e683b74de3376f47343ca91548c8ffbe1a3)) +* add new tool abstraction ([b12fd17](https://github.com/QuantGeekDev/mcp-framework/commit/b12fd17a3daf5bd1299c73e229240a5e614969c5)) +* add support for nested automatic discovery ([a0c3dff](https://github.com/QuantGeekDev/mcp-framework/commit/a0c3dffb58183a71995eb739bfb5ee731a912fe3)) +* refactor SSE transport for multiple connections and add prepare script ([30fc864](https://github.com/QuantGeekDev/mcp-framework/commit/30fc8643ee74457f1bfc2cabb706a05e296b832d)) +* update gitignore ([1823548](https://github.com/QuantGeekDev/mcp-framework/commit/1823548099b75b6a0b2a6eb991134b15c0077dd6)) +* update tool abstraction in README ([0c40512](https://github.com/QuantGeekDev/mcp-framework/commit/0c40512d27ed238d563f0401886d0f21e342563a)) + + +### Bug Fixes + +* concurrency ([484e3db](https://github.com/QuantGeekDev/mcp-framework/commit/484e3dbe029efa037193a6bc68400523a1c36c21)) +* gitignore indent ([4e03fa3](https://github.com/QuantGeekDev/mcp-framework/commit/4e03fa3043ba0b6179f73a725946b6c40a2449f0)) +* gitignore indent ([69e7afa](https://github.com/QuantGeekDev/mcp-framework/commit/69e7afad8b80d420fe19d56d5028548986dc0674)) +* multi client ([effbb13](https://github.com/QuantGeekDev/mcp-framework/commit/effbb131ae315c97b2d96f96f945f9bd11e51cfb)) +* multi client ([4019e11](https://github.com/QuantGeekDev/mcp-framework/commit/4019e11d6c48153bb80838469cfc994a46862ba2)) +* phantom ping issue ([7f4b423](https://github.com/QuantGeekDev/mcp-framework/commit/7f4b423e22fad3b1a0b39c9fade649fa45c36bbb)) +* phantom ping issue ([a0ef753](https://github.com/QuantGeekDev/mcp-framework/commit/a0ef7530dc4a9b310514d7559f0980bd4ba2f7da)) +* recursive loading ([5b3208f](https://github.com/QuantGeekDev/mcp-framework/commit/5b3208f5e6471c0e937e6524d58727f870e865d8)) +* recursive loading ([a34bc6a](https://github.com/QuantGeekDev/mcp-framework/commit/a34bc6a79cd8d3c920bb8ea46359dce742acb8f7)) +* update tool loader pathing ([5151aff](https://github.com/QuantGeekDev/mcp-framework/commit/5151aff51db516f7c3673fb7d28f3b27173cb533)) +* update tool loader pathing ([f048ecd](https://github.com/QuantGeekDev/mcp-framework/commit/f048ecdad8a23c517f4786dd7f4568e2a4c84845)) + ## [0.2.13](https://github.com/QuantGeekDev/mcp-framework/compare/mcp-framework-v0.2.12...mcp-framework-v0.2.13) (2025-05-23) diff --git a/package-lock.json b/package-lock.json index 4244835..ceaed06 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mcp-framework", - "version": "0.2.13", + "version": "0.2.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mcp-framework", - "version": "0.2.13", + "version": "0.2.14", "dependencies": { "@types/prompts": "^2.4.9", "commander": "^12.1.0", diff --git a/package.json b/package.json index 79664a3..c446a11 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcp-framework", - "version": "0.2.13", + "version": "0.2.14", "description": "Framework for building Model Context Protocol (MCP) servers in Typescript", "type": "module", "author": "Alex Andru ",