Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.6.3] - 2026-06-18

### Added
- Hubs may now declare advisory `covers` globs (repo-root-relative, same dialect as
`config.hubs`). The field is accepted, stored, and lint-validated — a malformed glob blocks,
and a hub whose globs don't match its own anchored files warns — but **the verdict never reads
it**: `surf check` is byte-for-byte identical whether or not a hub declares `covers`. The
louder coverage pass that consumes these globs stays deferred (#94, part of #5).
- TypeScript `suggest` now enumerates exported class methods (`Class > method`) by default —
matching Go (#29) and Python — so a class-heavy file no longer reports "no unanchored public
symbols found." `suggest --all` additionally proposes the exported class itself and
Expand Down Expand Up @@ -265,7 +272,8 @@ Initial release — the MVP gate that surfaces docs↔code divergence.
- Language support: TypeScript/TSX, JavaScript/JSX, Rust, Python, and Go.
- Distribution: GitHub Action, pre-commit hook, and `install.sh`; Apache-2.0 license.

[Unreleased]: https://github.com/Connorrmcd6/surface/compare/v0.6.2...HEAD
[Unreleased]: https://github.com/Connorrmcd6/surface/compare/v0.6.3...HEAD
[0.6.3]: https://github.com/Connorrmcd6/surface/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/Connorrmcd6/surface/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/Connorrmcd6/surface/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/Connorrmcd6/surface/compare/v0.5.0...v0.6.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["surf-core", "surf-cli"]
resolver = "2"

[workspace.package]
version = "0.6.2"
version = "0.6.3"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/Connorrmcd6/surface"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Most repos never install the binary — they run the GitHub Action:
```yaml
# .github/workflows/surface.yml
- uses: actions/checkout@v4 # plain checkout — do NOT set fetch-depth: 0
- uses: Connorrmcd6/surface@v0.6.2
- uses: Connorrmcd6/surface@v0.6.3
```

Or the install script:
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # plain checkout — do NOT set fetch-depth: 0
- uses: Connorrmcd6/surface@v0.6.2
- uses: Connorrmcd6/surface@v0.6.3
```

See [CI integration](../guides/ci-integration.md) for the checkout-depth rule and scoping flags.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/ci-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # plain checkout — do NOT set fetch-depth: 0
- uses: Connorrmcd6/surface@v0.6.2
- uses: Connorrmcd6/surface@v0.6.3
```

The action takes `args` (default `check`), `version` (default `latest`), and
Expand Down
Loading