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
2 changes: 1 addition & 1 deletion .cursor/skills/astvcs-add-tree-sitter-language/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
## Gather

1. Confirm the extension is not already listed in [docs/architecture.md](../../../docs/architecture.md).
2. Find a maintained `tree-sitter-*` crate on crates.io compatible with `tree-sitter = "0.26.9"`.
2. Find a maintained `tree-sitter-*` crate on crates.io compatible with `tree-sitter = "0.26.12"`.
3. Read `src/frontend/languages.rs`, `src/frontend/treesitter.rs`, and `supported_extensions()` in `src/lib.rs`.

## Act
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astvcs"
version = "0.1.6"
version = "0.1.7"
edition = "2024"
license = "MIT"

Expand All @@ -26,14 +26,14 @@ clap = { version = "4.6.1", features = ["derive"] }
hex = "0.4.3"
ignore = "0.4.26"
regex = "1.12.4"
reqwest = { version = "0.13.4", features = ["blocking", "json", "rustls"] }
reqwest = { version = "0.13.5", features = ["blocking", "json", "rustls"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
sha2 = "0.11.0"
similar = "3.1.1"
similar = "3.2.0"
subtle = "2.6.1"
tiny_http = { version = "0.12.0", features = ["ssl-rustls"] }
tree-sitter = "0.26.9"
tree-sitter = "0.26.12"
tree-sitter-bash = "0.25.1"
tree-sitter-c = "0.24.2"
tree-sitter-c-sharp = "0.23.5"
Expand All @@ -54,10 +54,10 @@ tree-sitter-toml-ng = "0.7.0"
tree-sitter-typescript = "0.23.2"
tree-sitter-yaml = "0.7.2"
tree-sitter-zig = "1.1.2"
zstd = "0.13.3"
zstd = "0.14.0"

[dev-dependencies]
proptest = "1.11.0"
rand = "0.10.2"
rcgen = "0.14.8"
rcgen = "0.14.10"
tempfile = "3.27.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To inspect how nodes were paired, run `astvcs diff --view` (optionally with a pa
| [docs/commands.md](docs/commands.md) | Full CLI reference (every subcommand and flag) |
| [docs/architecture.md](docs/architecture.md) | Repository model, diff/merge internals, locking, network, gc/fsck |
| [docs/git-integration.md](docs/git-integration.md) | Optional Git merge/diff drivers (no `.astvcs/` required) |
| [examples/README.md](examples/README.md) | Nine runnable fixture walkthroughs |
| [examples/README.md](examples/README.md) | Ten runnable fixture walkthroughs |
| [docs/RELEASE.md](docs/RELEASE.md) | Tagged release packaging |

Contributor Agent Skills live under [`.cursor/skills/`](.cursor/skills/) (`astvcs-develop`, `astvcs-output-ux`, `astvcs-structural-diff-merge`, `astvcs-add-tree-sitter-language`, `astvcs-integration-tests`).
Expand Down
9 changes: 7 additions & 2 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copy this outline when drafting a GitHub Release for a new tag. Project overview

## Version

`v0.1.6` (matches `Cargo.toml` `version` and `astvcs --version`)
`v0.1.7` (matches `Cargo.toml` `version` and `astvcs --version`)

## Requirements

Expand All @@ -22,10 +22,15 @@ Download the platform archive from [GitHub Releases](https://github.com/Cod-e-Co

Each archive contains three binaries: `astvcs`, `astvcs-merge-driver`, and `astvcs-diff-driver` (`.exe` on Windows). The `v0.1.0` archives shipped only the main `astvcs` binary.

Verify: `astvcs --version` should print `0.1.6`.
Verify: `astvcs --version` should print `0.1.7`.

## Changelog

### v0.1.7

- Bump direct crates: reqwest, similar, tree-sitter, zstd
- Bump dev-dependency rcgen

### v0.1.6

- Add Dependabot for Cargo and GitHub Actions (grouped tree-sitter, cargo-dev, and Actions updates)
Expand Down