Skip to content

Commit e6b7a4f

Browse files
authored
Merge pull request #23 from pusewicz/release/v0.16.2
Release v0.16.2
2 parents c24d9b9 + ab69cb2 commit e6b7a4f

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.16.2] - 2026-01-31
9+
10+
### Fixed
11+
12+
- Enum entries now correctly prefixed with `CF_` (e.g., `CF_KEY_SPACE` instead of `KEY_SPACE`) to match the CF_ENUM macro expansion
13+
814
## [0.16.1] - 2026-01-31
915

1016
### Fixed
@@ -255,6 +261,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
255261
- `cf_list_category` - List items by category
256262
- `cf_get_details` - Get full documentation by name
257263

264+
[0.16.2]: https://github.com/pusewicz/cf-mcp/compare/v0.16.1...v0.16.2
258265
[0.16.1]: https://github.com/pusewicz/cf-mcp/compare/v0.16.0...v0.16.1
259266
[0.16.0]: https://github.com/pusewicz/cf-mcp/compare/v0.15.5...v0.16.0
260267
[0.15.5]: https://github.com/pusewicz/cf-mcp/compare/v0.15.4...v0.15.5

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cf-mcp (0.16.1)
4+
cf-mcp (0.16.2)
55
mcp (~> 0.6)
66
puma (~> 7.1)
77
rack (~> 3.0)
@@ -117,7 +117,7 @@ CHECKSUMS
117117
addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
118118
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
119119
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
120-
cf-mcp (0.16.1)
120+
cf-mcp (0.16.2)
121121
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
122122
erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
123123
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require "standard/rake"
99

1010
desc "Generate Manifest.txt from git ls-files"
1111
task :manifest do
12-
ignore_patterns = %w[bin/ Gemfile .gitignore test/ .github/ .standard.yml cf-mcp.gemspec .ruby-version CLAUDE.md AGENTS.md fly.toml Procfile Dockerfile .dockerignore .claude/]
12+
ignore_patterns = %w[bin/ Gemfile .gitignore test/ .github/ .standard.yml cf-mcp.gemspec .ruby-version CLAUDE.md AGENTS.md fly.toml Procfile Dockerfile .dockerignore .claude/ .mcp.json]
1313

1414
files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
1515
ls.readlines("\x0", chomp: true)

lib/cf/mcp/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module CF
44
module MCP
5-
VERSION = "0.16.1"
5+
VERSION = "0.16.2"
66
end
77
end

0 commit comments

Comments
 (0)