Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.0] - 2026-02-09

### Added

- SHA-based caching for downloaded Cute Framework headers - checks GitHub API for latest commit SHA before downloading to avoid redundant fetches
Expand All @@ -17,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Downloader uses commit-specific archive URLs (e.g., /archive/abc1234.zip) instead of always downloading master branch
- Download process now checks for updates by comparing stored SHA with latest GitHub commit
- Refactored all internal `require_relative` statements to use `autoload` for lazy loading, improving load time and memory usage

## [0.16.2] - 2026-01-31

Expand Down Expand Up @@ -274,6 +277,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `cf_list_category` - List items by category
- `cf_get_details` - Get full documentation by name

[0.17.0]: https://github.com/pusewicz/cf-mcp/compare/v0.16.2...v0.17.0
[0.16.2]: https://github.com/pusewicz/cf-mcp/compare/v0.16.1...v0.16.2
[0.16.1]: https://github.com/pusewicz/cf-mcp/compare/v0.16.0...v0.16.1
[0.16.0]: https://github.com/pusewicz/cf-mcp/compare/v0.15.5...v0.16.0
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cf-mcp (0.16.2)
cf-mcp (0.17.0)
mcp (~> 0.6)
puma (~> 7.1)
rack (~> 3.0)
Expand Down Expand Up @@ -117,7 +117,7 @@ CHECKSUMS
addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
cf-mcp (0.16.2)
cf-mcp (0.17.0)
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
Expand Down
1 change: 1 addition & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ exe/cf-mcp
lib/cf/mcp.rb
lib/cf/mcp/cli.rb
lib/cf/mcp/downloader.rb
lib/cf/mcp/github_client.rb
lib/cf/mcp/index.rb
lib/cf/mcp/index_builder.rb
lib/cf/mcp/models/doc_item.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/cf/mcp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module CF
module MCP
VERSION = "0.16.2"
VERSION = "0.17.0"
end
end