Skip to content

Commit d8c58e1

Browse files
chore: bump version to 0.2.1
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7c09f9e commit d8c58e1

10 files changed

Lines changed: 20 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
77

88
## [Unreleased]
99

10+
## [0.2.1] - 2026-03-04
11+
12+
### Fixed
13+
14+
- Upgrade systeminformation ^5.23.5 → ^5.31.2 — resolves 4 High supply-chain CVEs.
15+
- Upgrade @modelcontextprotocol/sdk ^1.12.1 → ^1.27.1 — resolves 3 High supply-chain CVEs.
16+
- MCP server now works zero-config — no environment variables needed for leaderboard upload.
17+
- Fix MCP server version announcement (was stuck at 0.1.0).
18+
- Harden LM Studio non-thinking detection (regex + system prompt improvements).
19+
1020
## [0.2.0] - 2026-03-03
1121

1222
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ The tap formula lives in `Formula/metrillm.rb`.
263263
./scripts/update-homebrew-formula.sh
264264

265265
# Or pin a specific version
266-
./scripts/update-homebrew-formula.sh 0.2.0
266+
./scripts/update-homebrew-formula.sh 0.2.1
267267
```
268268

269269
After updating the formula, commit and push so users can install/update with:

mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metrillm-mcp",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"mcpName": "io.github.MetriLLM/metrillm",
55
"description": "MCP server for MetriLLM — benchmark local LLMs from any AI coding assistant",
66
"type": "module",

mcp/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"source": "github",
88
"subfolder": "mcp"
99
},
10-
"version": "0.2.0",
10+
"version": "0.2.1",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"identifier": "metrillm-mcp",
15-
"version": "0.2.0",
15+
"version": "0.2.1",
1616
"transport": {
1717
"type": "stdio"
1818
},

mcp/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020

2121
const server = new McpServer({
2222
name: "metrillm",
23-
version: "0.2.0",
23+
version: "0.2.1",
2424
});
2525

2626
// Register tools

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metrillm",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Benchmark your local LLM models — speed, quality & hardware fitness verdict",
55
"type": "module",
66
"bin": {

plugins/claude-code/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metrillm",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Benchmark local LLM models — performance, quality & hardware fitness verdict",
55
"author": {
66
"name": "Cyril Guilleminot",

plugins/cursor/.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "metrillm",
33
"displayName": "MetriLLM",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"description": "Benchmark local LLM models — performance, quality & hardware fitness verdict",
66
"category": "developer-tools",
77
"author": {

src/cli-main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ program
101101
.description(
102102
"Benchmark local LLMs for hardware fit and task quality, then compute a global verdict"
103103
)
104-
.version("0.2.0")
104+
.version("0.2.1")
105105
.hook("preAction", (_thisCommand, actionCommand) => {
106106
// Skip banner in JSON mode
107107
if (!actionCommand.opts()?.json) printBanner();

src/commands/bench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { promptThinkingMode } from "../ui/thinking-prompt.js";
3535
import type { BenchResult, BenchEnvironment, HardwareInfo, ModelInfo, OllamaModel, QualityMetrics, RunMetadata } from "../types.js";
3636
import { buildBenchmarkProfileMetadata, BENCHMARK_PROFILE_VERSION } from "../benchmarks/profile.js";
3737

38-
const BENCHMARK_SPEC_VERSION = "0.2.0";
38+
const BENCHMARK_SPEC_VERSION = "0.2.1";
3939
const PROMPT_PACK_VERSION = "0.1.0";
4040

4141
export interface BenchOptions {

0 commit comments

Comments
 (0)