Skip to content

Commit 5278936

Browse files
aksOpsclaude
andcommitted
docs: switch version target from v1.0.0 → v0.3.0
The v1.0.0 release flow burned (goreleaser before-hook bug, fixed in #133 but the tag itself was already pushed pointing at a commit that can't build). Rather than force-update v1.0.0, ship v0.3.0 cleanly from the fix commit and treat v1.0.0 as a one-off SemVer hole. Renames v1.0.0 → v0.3.0 in CHANGELOG.md, CLAUDE.md, PROJECT_SUMMARY.md. The "v1.1.0 removal target" for the deprecated 34 MCP tools becomes "a future minor" — pinning the removal version isn't worth the churn given we're not yet at 1.x. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7f32aa4 commit 5278936

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ for that specific tag for the per-commit details.
1414

1515
## [Unreleased]
1616

17-
## [v1.0.0] - 2026-05-13
17+
## [v0.3.0] - 2026-05-13
1818

1919
### Changed
2020

@@ -24,16 +24,16 @@ for that specific tag for the per-commit details.
2424
`.github/workflows/{ci-java,beta-java,release-java,go-parity}.yml`.
2525
~8.9 MB / ~1500 files removed.
2626

27-
### v1.0.0 surface
27+
### v0.3.0 surface
2828

29-
What ships in v1.0.0 (carrying forward from the c363727 squash + c630245 release infra):
29+
What ships in v0.3.0 (carrying forward from the c363727 squash + c630245 release infra):
3030

3131
- 100 detectors across 35+ languages.
3232
- Deterministic graph with confidence-aware NodeMerger and canonical
3333
`(src, tgt, kind)` edge dedup; phantom-drop visibility.
3434
- 6 consolidated mode-driven MCP tools + `run_cypher` escape hatch +
3535
`review_changes`. The deprecated 34 narrow tools remain wired for
36-
back-compat in this release; targeted for removal in v1.1.0.
36+
back-compat in this release; targeted for removal in a future minor.
3737
- `codeiq review` CLI + `review_changes` MCP tool with Ollama (local
3838
or Cloud) for LLM-driven PR review against graph evidence.
3939
- Goreleaser cross-platform binaries (linux/amd64, linux/arm64,
@@ -55,7 +55,7 @@ Pre-cutover Java-side history is preserved in the squash-merge commit
5555
`c363727` and on `origin/main`. Anyone needing to recover Java files
5656
can `git show c363727:<path>` or `git checkout c363727 -- <path>`.
5757

58-
[v1.0.0]: https://github.com/RandomCodeSpace/codeiq/releases/tag/v1.0.0
58+
[v0.3.0]: https://github.com/RandomCodeSpace/codeiq/releases/tag/v0.3.0
5959

6060
### Added
6161

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ database, MCP stdio server, single static Go binary.
1616
- **Config file**: `codeiq.yml` (project-level overrides)
1717

1818
The Java/Spring Boot reference that seeded this codebase was deleted
19-
in Phase 6 cutover (v1.0.0). For history, see commits `c363727` (port
19+
in Phase 6 cutover (v0.3.0). For history, see commits `c363727` (port
2020
landing) and `c630245` (release infra).
2121

2222
## Tech Stack
@@ -46,7 +46,7 @@ landing) and `c630245` (release infra).
4646
```
4747
index: FileDiscovery → Parsers → Detectors (goroutine pool) → GraphBuilder → SQLite cache
4848
enrich: SQLite → Linkers → LayerClassifier → LexicalEnricher → LanguageEnricher → ServiceDetector → Kuzu (COPY FROM)
49-
serve: (deferred — not ported in v1.0.0)
49+
serve: (deferred — not ported in v0.3.0)
5050
mcp: Kuzu → QueryService → 6 consolidated MCP tools + run_cypher escape hatch + review_changes
5151
```
5252

@@ -200,7 +200,7 @@ codeiq mcp /path/to/repo # for Claude / Cursor wiring
200200
The MCP server registers 6 consolidated mode-driven tools + `run_cypher`
201201
+ `review_changes`. The 34 narrow tools from the Java side stay wired
202202
for one release (v1.0.x) for back-compat with agents pinned to old
203-
names; they'll be removed in v1.1.0.
203+
names; they'll be removed in a future minor.
204204

205205
| Consolidated tool | mode dispatch |
206206
|---|---|
@@ -305,7 +305,7 @@ CGO_ENABLED=1 go build -o /usr/local/bin/codeiq ./cmd/codeiq
305305

306306
# Build with version info (release-go.yml does this with goreleaser):
307307
CGO_ENABLED=1 go build \
308-
-ldflags "-X 'github.com/randomcodespace/codeiq/go/internal/buildinfo.Version=v1.0.0' \
308+
-ldflags "-X 'github.com/randomcodespace/codeiq/go/internal/buildinfo.Version=v0.3.0' \
309309
-X 'github.com/randomcodespace/codeiq/go/internal/buildinfo.Commit=$(git rev-parse --short HEAD)' \
310310
-X 'github.com/randomcodespace/codeiq/go/internal/buildinfo.Date=$(date -u +%Y-%m-%dT%H:%M:%SZ)'" \
311311
-o /usr/local/bin/codeiq ./cmd/codeiq

PROJECT_SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project Summary: codeiq
22

3-
> Refreshed 2026-05-13 after Phase 6 cutover (v1.0.0). Audience: AI
3+
> Refreshed 2026-05-13 after Phase 6 cutover (v0.3.0). Audience: AI
44
> agents (and humans) who need to understand and modify this codebase.
55
>
66
> **Canonical depth lives in [`CLAUDE.md`](CLAUDE.md)** (~16 KB,
@@ -16,7 +16,7 @@
1616
infrastructure, auth patterns, framework usage. No AI, pure static
1717
analysis. LLM is opt-in via `codeiq review`.
1818
- **Type**: CLI tool + MCP stdio server, single static binary.
19-
- **Status**: v1.0.0 (Phase 6 cutover landed 2026-05-13). Active.
19+
- **Status**: v0.3.0 (Phase 6 cutover landed 2026-05-13). Active.
2020
- **Primary language**: Go 1.25.10. CGO required.
2121

2222
## Tech stack

0 commit comments

Comments
 (0)