Skip to content

Commit d4e5872

Browse files
randclaude
andcommitted
chore: release v0.7.1 — hook fixes and version alignment
Bumps all version references to 0.7.1. Includes fixes since v0.7.0: - Hook dispatch silences stderr - complexity-check non-blocking with fail-open - plugin.json version aligned with marketplace.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6dd2940 commit d4e5872

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"name": "rlm-claude-code",
1111
"source": "./",
1212
"description": "Recursive Language Model integration for Claude Code - Go binary hooks (~5ms startup), cross-plugin event coordination (DP/RLM), version-aware config migration, and intelligent multi-provider routing",
13-
"version": "0.7.0"
13+
"version": "0.7.1"
1414
}
1515
]
1616
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rlm-claude-code",
33
"description": "Recursive Language Model integration for Claude Code - intelligent multi-provider routing and unbounded context handling",
4-
"version": "0.7.0",
4+
"version": "0.7.1",
55
"author": {
66
"name": "Rand",
77
"url": "https://github.com/rand"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.7.1] - 2026-02-19
4+
5+
### Fixed
6+
- Hook dispatch silences stderr to prevent noisy output in Claude Code
7+
- complexity-check is now non-blocking with fail-open behavior
8+
- plugin.json version aligned with marketplace.json
9+
310
## [0.7.0] - 2026-02-02
411

512
### Changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rlm-claude-code"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "Recursive Language Model integration for Claude Code"
55
readme = "README.md"
66
requires-python = ">=3.12"

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- User-configurable preferences and budgets
1212
"""
1313

14-
__version__ = "0.7.0"
14+
__version__ = "0.7.1"
1515

1616
# Async execution (SPEC-08.01-08.06) - from orchestrator package
1717
# Core orchestration

0 commit comments

Comments
 (0)