Skip to content

Commit 035d1c7

Browse files
committed
release: cut v0.1.0
Mark the package private:true so 'npm publish' can't fire by accident — we want to soak this release with a small group of EMs before going to the public registry. The version stays at 0.1.0; private flips back to false (or comes off entirely) when we're ready to publish. Move the Unreleased CHANGELOG section into a dated [0.1.0] heading and update the compare/tag links to span v0.1.0-preview → v0.1.0.
1 parent 149f8d8 commit 035d1c7

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,28 @@ the project adheres to [Semantic Versioning](https://semver.org/).
66

77
## [Unreleased]
88

9+
_Nothing yet._
10+
11+
## [0.1.0] — 2026-04-07
12+
913
### Added
10-
- Biome for linting and formatting (replaces a future need for
11-
ESLint + Prettier with a single dependency).
14+
- Biome for linting and formatting (one dependency replaces both
15+
ESLint and Prettier).
1216
- `node:test` unit suites for the four pure modules (`config`,
1317
`logger`, `policyLoader`, `checker`) — 27 tests, no API key needed.
14-
- CI now runs Biome and the test suite on every push and PR.
15-
- GitHub issue templates for bug reports and feature requests.
18+
- CI runs Biome and the test suite on every push and PR across
19+
Node 20/22 on Linux and macOS.
20+
- GitHub issue templates for bug reports and feature requests, plus
21+
a Discussions link for open-ended questions.
1622
- This `CHANGELOG.md`.
1723

1824
### Changed
1925
- `extractJson` and a new `applyLowConfidenceOverride` helper are
2026
now exported from `checker.ts` so the JSON-extraction and
2127
low-confidence flip logic can be unit-tested without hitting the
2228
Anthropic API.
29+
- Marked the package `"private": true` in `package.json` to prevent
30+
accidental `npm publish` while we soak v0.1.0 with internal users.
2331

2432
## [0.1.0-preview] — 2026-04-07
2533

@@ -48,5 +56,6 @@ Initial public preview.
4856
log format choices
4957
- GitHub Actions CI on Node 20/22, Linux + macOS
5058

51-
[Unreleased]: https://github.com/Srikanth-AD/stackguard/compare/v0.1.0-preview...HEAD
59+
[Unreleased]: https://github.com/Srikanth-AD/stackguard/compare/v0.1.0...HEAD
60+
[0.1.0]: https://github.com/Srikanth-AD/stackguard/compare/v0.1.0-preview...v0.1.0
5261
[0.1.0-preview]: https://github.com/Srikanth-AD/stackguard/releases/tag/v0.1.0-preview

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "stackguard",
33
"version": "0.1.0",
4+
"private": true,
45
"description": "Pre-prompt policy enforcement for AI coding assistants. Checks developer prompts against company engineering guidelines before they reach the AI.",
56
"bin": {
67
"stackguard": "./dist/index.js"

0 commit comments

Comments
 (0)