Skip to content

Commit 581d407

Browse files
committed
chore: sync changes
1 parent 0926237 commit 581d407

7 files changed

Lines changed: 10 additions & 41 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ body:
7575
attributes:
7676
label: inspect version
7777
description: Output of `inspect version` or the git SHA you built from.
78-
placeholder: "0.2.0"
78+
placeholder: "0.1.0"
7979
validations:
8080
required: true
8181

.gitignore

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,7 @@ basic
44
*.exe
55
*.dll
66
*.so
7-
*.dylib
87

9-
# Test artifacts
10-
*.test
11-
*.out
12-
coverage.html
13-
coverage.txt
14-
15-
# IDE
16-
.idea/
17-
.vscode/
18-
*.swp
19-
*.swo
20-
*~
21-
22-
# OS
23-
.DS_Store
24-
Thumbs.db
25-
26-
# Go
27-
vendor/
28-
go.work
29-
go.work.sum
30-
.gocache/
31-
.gomodcache/
32-
33-
# CodeGraph local index
8+
# Local state
9+
.claude/
3410
.codegraph/
35-
36-
# AI/IDE tool configs
37-
.cursor/
38-
.openclaude/
39-
.commandcode/
40-
.antigravitycli/
41-
.pi/

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1010
## [Unreleased]
1111

1212
### Changed
13-
- **Version re-baselined to `0.2.0`** in
13+
- **Version re-baselined to `0.1.0`** in
1414
`internal/report/sarif.go` (`const inspectVersion`, used as
1515
`tool.driver.version` in SARIF output) and `mcp/server.go`
1616
(advertised MCP server version). Aligns inspect with the rest of
1717
the hawk-eco ecosystem (`hawk`, `tok`, `eyrie`, `yaad`, `trace`,
1818
`sight`).
1919
- Note: the previous values were inconsistent (`inspectVersion`
2020
was `"1.0.0"` while the MCP server advertised `"0.1.0"`); both
21-
now agree on `"0.2.0"`.
21+
now agree on `"0.1.0"`.
2222
- The SARIF spec version (`sarifVersion = "2.1.0"`) is unchanged
2323
— that's a different field that identifies the SARIF format,
2424
not the tool.
@@ -73,7 +73,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7373

7474
---
7575

76-
## [0.2.0] — 2026-04-30
76+
## [0.1.0] — 2026-04-30
7777

7878
### Added
7979
- Directory scanning (ScanDir)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.1.0

mcp/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func New(opts ...inspect.Option) *Server {
2626
scanner: inspect.NewScanner(opts...),
2727
}
2828
s.server = mcpserver.NewMCPServer(
29-
"inspect", "0.2.0",
29+
"inspect", "0.1.0",
3030
mcpserver.WithToolCapabilities(true),
3131
)
3232
s.registerTools()

mcp/server_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ func TestProtocol_Initialize(t *testing.T) {
151151
if result.Result.ServerInfo.Name != "inspect" {
152152
t.Errorf("server name: want inspect, got %s", result.Result.ServerInfo.Name)
153153
}
154-
if result.Result.ServerInfo.Version != "0.2.0" {
155-
t.Errorf("server version: want 0.2.0, got %s", result.Result.ServerInfo.Version)
154+
if result.Result.ServerInfo.Version != "0.1.0" {
155+
t.Errorf("server version: want 0.1.0, got %s", result.Result.ServerInfo.Version)
156156
}
157157
}
158158

0 commit comments

Comments
 (0)