cf-mcp 0.9.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fdaf411a4f3224a85c8399b9bd6964688ad3a6e8ce68ab61abbd76c32833c8e
4
- data.tar.gz: b23b96e53d98c56b9fc3364ec76a3a67c50df807b152d8b0e43f1f07db626d2e
3
+ metadata.gz: b6fedb8afb35425286a38fc55133e951e59d657d81eeffc2a92d6db9818335d3
4
+ data.tar.gz: 16d0549690be339cb5ffacd3441e9851caf726623928d69eea11fcc98bb6fa87
5
5
  SHA512:
6
- metadata.gz: 23b5cfa8ed27a9f71d8c031cefabad9b12c83ae5e109f9306b2456fcc0979c305287bcfde0e0dd2581009f84683b78b0e16630a52e8c665aba15c0dc26639453
7
- data.tar.gz: 1e1785c0bac762cf2b77dfa4bf26faa4e9093124ccf2be74972cc34552e315ca20dbe9a530136b8b34f485d6b1ae727bd617028e5ef3bdad3feb6684787d1fb6
6
+ metadata.gz: a35368e604a65c472533a4fec75aa5a98d7d026fd0397ed63011bd8078b493692678884997527ad85397d32d2f5a3b34c8c5ec50d9344c195123a8967ca88415
7
+ data.tar.gz: e62f7e33269effca4931b1a8a85f2519422c69a14a6b54db158638385e67f09dcd74a4771bbf8ef691e256f0ca33f67ad2eb8eb93eddd7fb1ecb2b62235fe7c1
data/CHANGELOG.md ADDED
@@ -0,0 +1,120 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.9.3] - 2026-01-14
9
+
10
+ ### Added
11
+
12
+ - Claude Code slash commands for version bumping and releases
13
+ - Documentation for changelog and slash commands in CLAUDE.md
14
+
15
+ ### Changed
16
+
17
+ - Include CHANGELOG.md in gem manifest
18
+
19
+ ## [0.9.2] - 2026-01-14
20
+
21
+ ### Added
22
+
23
+ - Changelog display in the web UI
24
+
25
+ ## [0.9.1] - 2026-01-14
26
+
27
+ ### Changed
28
+
29
+ - Version bump release
30
+
31
+ ## [0.9.0] - 2026-01-14
32
+
33
+ ### Changed
34
+
35
+ - Rewrote web UI with Preact for better interactivity
36
+ - Form now remembers the last search value
37
+ - Refactored internal code structure
38
+
39
+ ## [0.8.0] - 2026-01-14
40
+
41
+ ### Changed
42
+
43
+ - Downloader now caches headers per version, avoiding re-downloads
44
+
45
+ ## [0.7.0] - 2026-01-14
46
+
47
+ ### Added
48
+
49
+ - Added topics/categories display in search results
50
+ - Added links to source code in documentation output
51
+
52
+ ## [0.6.0] - 2026-01-14
53
+
54
+ ### Added
55
+
56
+ - New `cf_find_related` tool to find related functions, structs, and enums
57
+ - New `cf_member_search` tool to search struct/enum members
58
+ - New `cf_parameter_search` tool to search function parameters
59
+
60
+ ## [0.5.0] - 2026-01-14
61
+
62
+ ### Changed
63
+
64
+ - Search results now sorted by relevance score
65
+
66
+ ## [0.4.0] - 2026-01-14
67
+
68
+ ### Changed
69
+
70
+ - Extracted CSS and JavaScript assets to separate template files
71
+
72
+ ## [0.3.0] - 2026-01-14
73
+
74
+ ### Changed
75
+
76
+ - Improved tool output formatting for better readability
77
+
78
+ ## [0.2.0] - 2026-01-14
79
+
80
+ ### Added
81
+
82
+ - Tool explorer web interface for testing MCP tools interactively
83
+
84
+ ## [0.1.3] - 2026-01-14
85
+
86
+ ### Added
87
+
88
+ - Combined server mode (`cf-mcp combined`) with SSE, HTTP, and web UI
89
+ - Fly.io deployment configuration
90
+
91
+ ## [0.1.0] - 2026-01-14
92
+
93
+ ### Added
94
+
95
+ - Initial release
96
+ - MCP server with STDIO, HTTP, and SSE modes
97
+ - Header file parser for Cute Framework documentation
98
+ - In-memory search index with relevance scoring
99
+ - GitHub header downloader with `--download` flag
100
+ - Six MCP tools:
101
+ - `cf_search` - Search all documentation types
102
+ - `cf_search_functions` - Search functions
103
+ - `cf_search_structs` - Search structs
104
+ - `cf_search_enums` - Search enums
105
+ - `cf_list_category` - List items by category
106
+ - `cf_get_details` - Get full documentation by name
107
+
108
+ [0.9.3]: https://github.com/pusewicz/cf-mcp/compare/v0.9.2...v0.9.3
109
+ [0.9.2]: https://github.com/pusewicz/cf-mcp/compare/v0.9.1...v0.9.2
110
+ [0.9.1]: https://github.com/pusewicz/cf-mcp/compare/v0.9.0...v0.9.1
111
+ [0.9.0]: https://github.com/pusewicz/cf-mcp/compare/v0.8.0...v0.9.0
112
+ [0.8.0]: https://github.com/pusewicz/cf-mcp/compare/v0.7.0...v0.8.0
113
+ [0.7.0]: https://github.com/pusewicz/cf-mcp/compare/v0.6.0...v0.7.0
114
+ [0.6.0]: https://github.com/pusewicz/cf-mcp/compare/v0.5.0...v0.6.0
115
+ [0.5.0]: https://github.com/pusewicz/cf-mcp/compare/v0.4.0...v0.5.0
116
+ [0.4.0]: https://github.com/pusewicz/cf-mcp/compare/v0.3.0...v0.4.0
117
+ [0.3.0]: https://github.com/pusewicz/cf-mcp/compare/v0.2.0...v0.3.0
118
+ [0.2.0]: https://github.com/pusewicz/cf-mcp/compare/v0.1.3...v0.2.0
119
+ [0.1.3]: https://github.com/pusewicz/cf-mcp/compare/v0.1.0...v0.1.3
120
+ [0.1.0]: https://github.com/pusewicz/cf-mcp/releases/tag/v0.1.0
data/Manifest.txt CHANGED
@@ -1,3 +1,4 @@
1
+ CHANGELOG.md
1
2
  LICENSE.txt
2
3
  Manifest.txt
3
4
  README.md
data/Rakefile CHANGED
@@ -50,4 +50,4 @@ task "release:tag" => %i[test standard tag] do
50
50
  tag = "v#{CF::MCP::VERSION}"
51
51
  sh "git", "push", "origin", tag
52
52
  puts "Pushed #{tag} to origin"
53
- end
53
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module CF
4
4
  module MCP
5
- VERSION = "0.9.2"
5
+ VERSION = "0.9.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cf-mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Usewicz
@@ -88,6 +88,7 @@ executables:
88
88
  extensions: []
89
89
  extra_rdoc_files: []
90
90
  files:
91
+ - CHANGELOG.md
91
92
  - LICENSE.txt
92
93
  - Manifest.txt
93
94
  - README.md