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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.7.0] - 2026-06-29

### Added
- **`refs` hub composition (#4).** A hub's `refs:` now compose *other hubs*: a path relative to the
referencing hub (`./resolve.md`), optionally `> symbol` to address one claim within the target
Expand Down Expand Up @@ -317,7 +319,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.3...HEAD
[Unreleased]: https://github.com/Connorrmcd6/surface/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/Connorrmcd6/surface/compare/v0.6.3...v0.7.0
[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
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.3"
version = "0.7.0"
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.3
- uses: Connorrmcd6/surface@v0.7.0
```

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.3
- uses: Connorrmcd6/surface@v0.7.0
```

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.3
- uses: Connorrmcd6/surface@v0.7.0
```

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