mirror of
https://github.com/ast-grep/ast-grep.git
synced 2026-05-06 06:06:46 -04:00
0.39.7
bump version
This commit is contained in:
@@ -4,8 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
|
||||
|
||||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
||||
|
||||
#### [0.39.7](https://github.com/ast-grep/ast-grep/compare/0.39.6...0.39.7)
|
||||
|
||||
- feat: LSP quick fix should support expandStart / expandEnd [`#2301`](https://github.com/ast-grep/ast-grep/issues/2301)
|
||||
- chore(deps): update dependency @ast-grep/napi to v0.39.6 [`6859809`](https://github.com/ast-grep/ast-grep/commit/68598091f2ae47d4d52d701f706590a964bc2ba5)
|
||||
- chore(deps): update dependency oxlint to v1.24.0 [`6ee2f84`](https://github.com/ast-grep/ast-grep/commit/6ee2f84b606ca485446263fee27bba4f2753d601)
|
||||
- chore(deps): update dependency oxlint to v1.23.0 [`c88c8ca`](https://github.com/ast-grep/ast-grep/commit/c88c8ca063f9695355bacf5a891b40879bc7fe07)
|
||||
|
||||
#### [0.39.6](https://github.com/ast-grep/ast-grep/compare/0.39.5...0.39.6)
|
||||
|
||||
> 4 October 2025
|
||||
|
||||
- chore(deps): update dependency @napi-rs/cli to v3.2.0 [`4fc74cd`](https://github.com/ast-grep/ast-grep/commit/4fc74cdab5c41541e39443f700d94de72a51cd9d)
|
||||
- fix(deps): update rust crate inquire to 0.8.0 [`575f750`](https://github.com/ast-grep/ast-grep/commit/575f750e9f470f4f9c2bbf5eaf59f53343345b7b)
|
||||
- chore(deps): update dependency @ast-grep/napi to v0.39.5 [`62ac63c`](https://github.com/ast-grep/ast-grep/commit/62ac63c76b8a4876351650153bd58796a481b9d5)
|
||||
|
||||
Generated
+8
-8
@@ -94,7 +94,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@@ -128,7 +128,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-config"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"ast-grep-core",
|
||||
"bit-set",
|
||||
@@ -143,7 +143,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-core"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"bit-set",
|
||||
"regex",
|
||||
@@ -154,7 +154,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-dynamic"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"ast-grep-core",
|
||||
"ignore",
|
||||
@@ -168,7 +168,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-language"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"ast-grep-core",
|
||||
"ignore",
|
||||
@@ -203,7 +203,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-lsp"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ast-grep-config",
|
||||
@@ -221,7 +221,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-napi"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"ast-grep-config",
|
||||
"ast-grep-core",
|
||||
@@ -237,7 +237,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ast-grep-py"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ast-grep-config",
|
||||
|
||||
+6
-6
@@ -10,7 +10,7 @@ resolver = "2"
|
||||
lto = true
|
||||
|
||||
[workspace.package]
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
authors = ["Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>"]
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
@@ -21,11 +21,11 @@ rust-version = "1.79"
|
||||
readme = "README.md"
|
||||
|
||||
[workspace.dependencies]
|
||||
ast-grep-core = { path = "crates/core", version = "0.39.6", default-features = false }
|
||||
ast-grep-config = { path = "crates/config", version = "0.39.6" }
|
||||
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.6" }
|
||||
ast-grep-language = { path = "crates/language", version = "0.39.6" }
|
||||
ast-grep-lsp = { path = "crates/lsp", version = "0.39.6" }
|
||||
ast-grep-core = { path = "crates/core", version = "0.39.7", default-features = false }
|
||||
ast-grep-config = { path = "crates/config", version = "0.39.7" }
|
||||
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.7" }
|
||||
ast-grep-language = { path = "crates/language", version = "0.39.7" }
|
||||
ast-grep-lsp = { path = "crates/lsp", version = "0.39.7" }
|
||||
|
||||
bit-set = { version = "0.8.0" }
|
||||
ignore = { version = "0.4.22" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-darwin-arm64",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-darwin-x64",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-linux-arm64-gnu",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-linux-arm64-musl",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-linux-x64-gnu",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-linux-x64-musl",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-win32-arm64-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-win32-ia32-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi-win32-x64-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/napi",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"description": "Search and Rewrite code at large scale using precise AST pattern",
|
||||
"homepage": "https://ast-grep.github.io",
|
||||
"main": "index.js",
|
||||
|
||||
@@ -5,7 +5,7 @@ build-backend = "maturin"
|
||||
[project]
|
||||
name = "ast-grep-py"
|
||||
requires-python = ">=3.8"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
|
||||
authors = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
||||
maintainers = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
||||
|
||||
+8
-8
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
@@ -29,13 +29,13 @@
|
||||
"postinstall": "node postinstall.js"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@ast-grep/cli-win32-arm64-msvc": "0.39.6",
|
||||
"@ast-grep/cli-win32-ia32-msvc": "0.39.6",
|
||||
"@ast-grep/cli-win32-x64-msvc": "0.39.6",
|
||||
"@ast-grep/cli-darwin-arm64": "0.39.6",
|
||||
"@ast-grep/cli-darwin-x64": "0.39.6",
|
||||
"@ast-grep/cli-linux-arm64-gnu": "0.39.6",
|
||||
"@ast-grep/cli-linux-x64-gnu": "0.39.6"
|
||||
"@ast-grep/cli-win32-arm64-msvc": "0.39.7",
|
||||
"@ast-grep/cli-win32-ia32-msvc": "0.39.7",
|
||||
"@ast-grep/cli-win32-x64-msvc": "0.39.7",
|
||||
"@ast-grep/cli-darwin-arm64": "0.39.7",
|
||||
"@ast-grep/cli-darwin-x64": "0.39.7",
|
||||
"@ast-grep/cli-linux-arm64-gnu": "0.39.7",
|
||||
"@ast-grep/cli-linux-x64-gnu": "0.39.7"
|
||||
},
|
||||
"bin": {
|
||||
"sg": "sg",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-darwin-arm64",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-darwin-x64",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"darwin"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-linux-arm64-gnu",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-linux-x64-gnu",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-win32-arm64-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-win32-ia32-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ast-grep/cli-win32-x64-msvc",
|
||||
"version": "0.39.6",
|
||||
"version": "0.39.7",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||
|
||||
[project]
|
||||
name = "ast-grep-cli"
|
||||
version = "0.39.6"
|
||||
version = "0.39.7"
|
||||
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
|
||||
authors = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
||||
maintainers = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
||||
|
||||
Reference in New Issue
Block a user