Skip to content

Commit e512650

Browse files
committed
chore: sync changes
1 parent 3885e1d commit e512650

6 files changed

Lines changed: 9 additions & 40 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
@@ -74,7 +74,7 @@ body:
7474
attributes:
7575
label: sight version
7676
description: Output of `sight version` (or the git SHA you built from).
77-
placeholder: "0.2.0"
77+
placeholder: "0.1.0"
7878
validations:
7979
required: true
8080

.gitignore

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,7 @@
33
*.exe
44
*.dll
55
*.so
6-
*.dylib
76

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

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ 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`** across the MCP server advertisement
13+
- **Version re-baselined to `0.1.0`** across the MCP server advertisement
1414
and both SARIF driver-version sites. Aligns sight with the rest of
1515
the hawk-eco ecosystem (`hawk`, `tok`, `eyrie`, `yaad`, `trace`,
1616
`inspect`).
17-
- `mcp/server.go`: `mcpserver.NewMCPServer("sight", "0.2.0", ...)`
18-
- `sarif.go`: `Driver.Version`/`Driver.SemanticVersion``"0.2.0"`
17+
- `mcp/server.go`: `mcpserver.NewMCPServer("sight", "0.1.0", ...)`
18+
- `sarif.go`: `Driver.Version`/`Driver.SemanticVersion``"0.1.0"`
1919
(the SARIF spec version remains `"2.1.0"` — that's a different
2020
field; it identifies the SARIF format, not the tool)
2121
- `internal/output/sarif.go`: same fix in the duplicated SARIF code
@@ -64,7 +64,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
6464

6565
---
6666

67-
## [0.2.0] — 2026-04-30
67+
## [0.1.0] — 2026-04-30
6868

6969
### Added
7070
- Describe operation (PR description generation)

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
@@ -28,7 +28,7 @@ func New(provider sight.Provider, opts ...sight.Option) *Server {
2828
opts: opts,
2929
}
3030
s.server = mcpserver.NewMCPServer(
31-
"sight", "0.2.0",
31+
"sight", "0.1.0",
3232
mcpserver.WithToolCapabilities(true),
3333
)
3434
s.registerTools()

0 commit comments

Comments
 (0)