Skip to content

Commit 0d734d6

Browse files
0.29.0
bump version
1 parent 2b26b0b commit 0d734d6

File tree

23 files changed

+57
-42
lines changed

23 files changed

+57
-42
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,23 @@ 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.29.0](https://github.com/ast-grep/ast-grep/compare/0.28.1...0.29.0)
8+
9+
- feat: support override severity of unused-suppression [`#1556`](https://github.com/ast-grep/ast-grep/issues/1556)
10+
- feat: unify configuration reading [`#1557`](https://github.com/ast-grep/ast-grep/issues/1557)
11+
- feat: unify configuration [`#1557`](https://github.com/ast-grep/ast-grep/issues/1557)
12+
- refactor: improve file config handling [`#1553`](https://github.com/ast-grep/ast-grep/issues/1553)
13+
- refactor: revamp configuration file discovering and custom language registration [`#1553`](https://github.com/ast-grep/ast-grep/issues/1553)
14+
- feat(scan): support context, before/after flags [`#1549`](https://github.com/ast-grep/ast-grep/issues/1549)
15+
- feat: add RuleOverwrite to override rule severity from CLI [`#1061`](https://github.com/ast-grep/ast-grep/issues/1061)
16+
- **Breaking change:** feat: support --config in sg new [`cfe472f`](https://github.com/ast-grep/ast-grep/commit/cfe472f63c7011ef5635ca38fea4846c871a1177)
17+
- feat: add rule overwrite impl [`fb4ac07`](https://github.com/ast-grep/ast-grep/commit/fb4ac07b0eddd6d8c30194221396ab4dbf8e65ce)
18+
- fix(deps): update dependency @swc/core to v1.7.36 [`c11fd89`](https://github.com/ast-grep/ast-grep/commit/c11fd891f7ed28c7c698a43c99a6f2bf2efa8022)
19+
720
#### [0.28.1](https://github.com/ast-grep/ast-grep/compare/0.28.0...0.28.1)
821

22+
> 20 October 2024
23+
924
- feat: report unused suppression [`#1346`](https://github.com/ast-grep/ast-grep/issues/1346)
1025
- feat: make number of threads configurable [`#1498`](https://github.com/ast-grep/ast-grep/issues/1498)
1126
- doc: add bug report yaml [`#1462`](https://github.com/ast-grep/ast-grep/issues/1462)

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -11,7 +11,7 @@ resolver = "2"
1111
lto = true
1212

1313
[workspace.package]
14-
version = "0.28.1"
14+
version = "0.29.0"
1515
authors = ["Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>"]
1616
edition = "2021"
1717
license = "MIT"
@@ -22,11 +22,11 @@ rust-version = "1.67"
2222
readme = "README.md"
2323

2424
[workspace.dependencies]
25-
ast-grep-core = { path = "crates/core", version = "0.28.1" }
26-
ast-grep-config = { path = "crates/config", version = "0.28.1" }
27-
ast-grep-dynamic = { path = "crates/dynamic", version = "0.28.1" }
28-
ast-grep-language = { path = "crates/language", version = "0.28.1" }
29-
ast-grep-lsp = { path = "crates/lsp", version = "0.28.1" }
25+
ast-grep-core = { path = "crates/core", version = "0.29.0" }
26+
ast-grep-config = { path = "crates/config", version = "0.29.0" }
27+
ast-grep-dynamic = { path = "crates/dynamic", version = "0.29.0" }
28+
ast-grep-language = { path = "crates/language", version = "0.29.0" }
29+
ast-grep-lsp = { path = "crates/lsp", version = "0.29.0" }
3030

3131
bit-set = { version = "0.8.0" }
3232
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
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.28.1",
3+
"version": "0.29.0",
44
"os": [
55
"win32"
66
],

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy