Skip to content

Commit 5eb32bf

Browse files
committed
release: cut v3.8.3
Readable output (value / healthy direction / what it means + deficit bands), deterministic Next Steps, and VS Code webview surfaces; fixes for dead-code semantics, adaptive-init config preservation, and unused-deps stdlib/dev-tool false positives. Promote CHANGELOG [Unreleased] -> [3.8.3]; bump pyproject + __version__; update README release track.
1 parent a252c25 commit 5eb32bf

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
---
13+
14+
## [3.8.3] - 2026-06-06 — Readable Output, Next Steps, VS Code Surfaces
15+
1216
### Added
1317

1418
**Human-friendly output (analysis -> action)**

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ File-level evidence. Machine-readable output. No LLM in the scoring path.
2323
</p>
2424

2525
**Release track**
26-
- Stable tag: `v3.8.2`
27-
- Previous stable tag: `v3.8.1`
28-
- `v3.8.1` adds confidence-ranked cleanup plans, manifest hygiene, and opt-in layered architecture review.
26+
- Stable tag: `v3.8.3`
27+
- Previous stable tag: `v3.8.2`
2928
- `v3.8.2` adds adaptive `--init`, a Node/npm transport surface, repo-local impact tracking, and default-off telemetry controls.
29+
- `v3.8.3` adds human-friendly metric output (value / healthy direction / what it means + deficit bands), deterministic Next Steps, and the VS Code webview surfaces; fixes dead-code semantics, adaptive-init config preservation, and `unused-deps` stdlib / dev-tool false positives.
3030

3131
---
3232

@@ -787,6 +787,7 @@ code --install-extension vscode-slop-detector-3.7.3.vsix
787787
788788
| Version | Highlights |
789789
|---|---|
790+
| **v3.8.3** | human-friendly metric output (value / healthy direction / what it means + deficit bands) and deterministic Next Steps across rich/text/markdown; VS Code webview surfaces (4D breakdown, cleanup plan, pulse, diff-aware review); fixes for dead-code semantics, adaptive-init config preservation, and `unused-deps` stdlib / dev-tool false positives |
790791
| **v3.8.2** | adaptive `--init` adds bounded repo-signal suggestions and preview/merge flows; npm wrapper adds typed contracts, Node API, and agent workflow docs; local impact tracking and opt-in telemetry become first-class observability surfaces |
791792
| **v3.8.1** | cleanup-family outputs become confidence-ranked action plans; `unused-deps` grows manifest hygiene for `pyproject.toml` / `package.json`; `boundary-violations` gains opt-in layered architecture review with explicit rule evidence |
792793
| **v3.7.9** | **Governance gate**: `verify-governance` fail-closed CLI, deterministic governance-record verification, and a formal split between scoring math and enforcement |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ai-slop-detector"
7-
version = "3.8.2"
7+
version = "3.8.3"
88
description = "Evidence-based static analyzer for detecting AI-generated code quality issues with context-aware validation"
99
authors = [
1010
{name = "Flamehaven Labs", email = "info@flamehaven.space"}

src/slop_detector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from typing import Any
44

5-
__version__ = "3.8.2"
5+
__version__ = "3.8.3"
66
__author__ = "Flamehaven Labs"
77
__email__ = "info@flamehaven.space"
88

0 commit comments

Comments
 (0)