release: v0.1.0

First official release of Claude Code Java.

- 34 tools, 54 commands, 184 source files, ~26.7K lines
- Jink 0.5.0 full-screen TUI
- Dual API providers (OpenAI + Anthropic)
- Multi-level permission system
- Three-layer context compression
- MCP protocol, plugin system, hook system
- 87 unit tests passing

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
abel533
2026-04-07 20:28:07 +08:00
co-authored by Copilot
parent 4be570a4f2
commit b60a212ad0
4 changed files with 118 additions and 4 deletions
@@ -11,7 +11,7 @@ import java.util.regex.Pattern;
*/
public class BannerPrinter {
private static final String VERSION = "0.1.0-SNAPSHOT";
private static final String VERSION = "0.1.0";
// 匹配 ANSI 转义序列的正则
private static final Pattern ANSI_PATTERN = Pattern.compile("\033\\[[0-9;]*m");