Skip to content

Commit ff9e443

Browse files
0.39.4
bump version
1 parent 6908f9a commit ff9e443

File tree

23 files changed

+60
-42
lines changed

23 files changed

+60
-42
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [0.39.4](https://github.com/ast-grep/ast-grep/compare/0.39.3...0.39.4)
8+
9+
- Improve error messages for ast-grep test failures based on failure type [`#2174`](https://github.com/ast-grep/ast-grep/pull/2174)
10+
- Add comprehensive GitHub Copilot development instructions [`#2152`](https://github.com/ast-grep/ast-grep/pull/2152)
11+
- Address all code review comments: move make_rule_finder to lsp.rs, simplify logic, reduce indentation, update file watchers, remove unused deps [`8ef8ed6`](https://github.com/ast-grep/ast-grep/commit/8ef8ed63490b379f7cee54ad0cf6ff9e8d557016)
12+
- Decouple rule finding logic from LSP crate as requested [`531aac3`](https://github.com/ast-grep/ast-grep/commit/531aac39f2465a0f53a32e437838895e637f0105)
13+
- Complete LSP rule reloading implementation with tests [`683f20e`](https://github.com/ast-grep/ast-grep/commit/683f20eb8d3adcbfc525ad1c640413dcbf2d6bd9)
14+
715
#### [0.39.3](https://github.com/ast-grep/ast-grep/compare/0.39.2...0.39.3)
816

17+
> 5 August 2025
18+
919
- add some tests for hcl [`756499e`](https://github.com/ast-grep/ast-grep/commit/756499eab0e895fbc5641a83a9dc53c341ad82b5)
1020
- add tree-sitter-hcl to ast-grep-language package deps [`26b638a`](https://github.com/ast-grep/ast-grep/commit/26b638ac2dc997ac88f564ec4923bb36fb588a50)
1121
- fix(deps): update rust crate clap to v4.5.42 [`4d047eb`](https://github.com/ast-grep/ast-grep/commit/4d047ebad029c2fc53176ba51d8929986efd42f1)
@@ -29,7 +39,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
2939
- fix: fix build [`d59c219`](https://github.com/ast-grep/ast-grep/commit/d59c219299af827da11a52f9e7f8ffbbb3ebaeb8)
3040
- fix: remove json format [`90369a4`](https://github.com/ast-grep/ast-grep/commit/90369a4cf698e8d3cbdc9c872f852c277588521b)
3141

32-
#### [0.39.0](https://github.com/ast-grep/ast-grep/compare/0.38.6...0.39.0)
42+
#### [0.39.0](https://github.com/ast-grep/ast-grep/compare/0.38.7...0.39.0)
3343

3444
> 20 July 2025
3545
@@ -42,6 +52,14 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
4252
- refactor: reorganize exports in index.d.ts and update linting configuration [`74e22e2`](https://github.com/ast-grep/ast-grep/commit/74e22e224580611712dbaddb52e9cb6159d96384)
4353
- refactor: remove biome configuration and update linting tool to oxlint [`61ab759`](https://github.com/ast-grep/ast-grep/commit/61ab7592e91f4293b6161955fcbb58c7d7e8a50c)
4454

55+
#### [0.38.7](https://github.com/ast-grep/ast-grep/compare/0.38.6...0.38.7)
56+
57+
> 9 July 2025
58+
59+
- refactor: remove biome configuration and update linting tool to oxlint [`ed3e5b1`](https://github.com/ast-grep/ast-grep/commit/ed3e5b1197b1ebec1533021fd446366eac0d2408)
60+
- chore(deps): update dependency @ast-grep/napi to v0.38.6 [`9e5f1e0`](https://github.com/ast-grep/ast-grep/commit/9e5f1e070aed4557f998db0c4cab97f4aead9fbe)
61+
- Revert "fix(deps): update rust crate tower-lsp-server to 0.22.0" [`7d8e872`](https://github.com/ast-grep/ast-grep/commit/7d8e872b5b4aea3bd5d1c3f7311d375378e8181a)
62+
4563
#### [0.38.6](https://github.com/ast-grep/ast-grep/compare/0.38.5...0.38.6)
4664

4765
> 23 June 2025

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolver = "2"
1010
lto = true
1111

1212
[workspace.package]
13-
version = "0.39.3"
13+
version = "0.39.4"
1414
authors = ["Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>"]
1515
edition = "2021"
1616
license = "MIT"
@@ -21,11 +21,11 @@ rust-version = "1.79"
2121
readme = "README.md"
2222

2323
[workspace.dependencies]
24-
ast-grep-core = { path = "crates/core", version = "0.39.3", default-features = false }
25-
ast-grep-config = { path = "crates/config", version = "0.39.3" }
26-
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.3" }
27-
ast-grep-language = { path = "crates/language", version = "0.39.3" }
28-
ast-grep-lsp = { path = "crates/lsp", version = "0.39.3" }
24+
ast-grep-core = { path = "crates/core", version = "0.39.4", default-features = false }
25+
ast-grep-config = { path = "crates/config", version = "0.39.4" }
26+
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.4" }
27+
ast-grep-language = { path = "crates/language", version = "0.39.4" }
28+
ast-grep-lsp = { path = "crates/lsp", version = "0.39.4" }
2929

3030
bit-set = { version = "0.8.0" }
3131
ignore = { version = "0.4.22" }

crates/napi/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-darwin-arm64",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"darwin"
66
],

crates/napi/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-darwin-x64",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"darwin"
66
],

crates/napi/npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-linux-arm64-gnu",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"linux"
66
],

crates/napi/npm/linux-arm64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-linux-arm64-musl",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"linux"
66
],

crates/napi/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-linux-x64-gnu",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"linux"
66
],

crates/napi/npm/linux-x64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-linux-x64-musl",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"linux"
66
],

crates/napi/npm/win32-arm64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ast-grep/napi-win32-arm64-msvc",
3-
"version": "0.39.3",
3+
"version": "0.39.4",
44
"os": [
55
"win32"
66
],

0 commit comments

Comments
 (0)