Skip to content

Commit 0dfd4b8

Browse files
committed
chore: release
1 parent 70ac60a commit 0dfd4b8

9 files changed

Lines changed: 52 additions & 38 deletions

File tree

.release-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.4.1"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.4.1](https://github.com/rust-mcp-stack/rust-mcp-filesystem/compare/v0.4.0...v0.4.1) (2026-03-15)
4+
5+
6+
### 🚀 Features
7+
8+
* Add --disable-tools CLI option to disable specific tools ([#79](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/79)) ([1c8a53d](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/1c8a53d9f16d6278e6d26bc33113fd36e213fdc5))
9+
* Add crates.io publish workflow and cargo installation docs ([#81](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/81)) ([695c3da](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/695c3da5518da792c39eaf3f7e13673cc0ad0be5))
10+
11+
12+
### 🐛 Bug Fixes
13+
14+
* Fail on multiple matches by default and add replaceAll option for bulk replacement ([#77](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/77)) ([8f1e2a3](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/8f1e2a321b842b917c3acbfb9209db35742cd833))
15+
* Return InvalidConfig error instead of panicking for invalid directories ([#80](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/80)) ([fcb5552](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/fcb5552535027999397f5a740a72396b274b8c2f))
16+
317
## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-filesystem/compare/v0.3.9...v0.4.0) (2026-01-03)
418

519

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-filesystem"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2024"
55
repository = "https://github.com/rust-mcp-stack/rust-mcp-filesystem"
66
authors = ["Ali Hashemi"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ For detailed setup instructions, please visit the [project documentation](https:
3434
<!-- x-release-please-start-version -->
3535
- **Shell script**
3636
```sh
37-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.sh | sh
37+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.sh | sh
3838
```
3939

4040
- **PowerShell script**
4141
```sh
42-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.ps1 | iex"
42+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.ps1 | iex"
4343
```
4444

4545
- **Homebrew**
@@ -67,7 +67,7 @@ npm i -g @rustmcp/rust-mcp-filesystem@latest
6767

6868
- **Download Binaries**
6969

70-
https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/tag/v0.4.0
70+
https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/tag/v0.4.1
7171

7272
<!-- x-release-please-end -->
7373

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Refer to the [quickstart](quickstart.md) guide for installation and configuratio
2525
<!-- x-release-please-start-version -->
2626

2727
```sh
28-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.sh | sh
28+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.sh | sh
2929
```
3030

3131
##### **PowerShell script**
3232

3333
```sh
34-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.ps1 | iex"
34+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.ps1 | iex"
3535
```
3636

3737
##### **Homebrew**
@@ -59,7 +59,7 @@ npm i -g @rustmcp/rust-mcp-filesystem@latest
5959

6060
##### **Download Binaries**
6161

62-
https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/tag/v0.4.0
62+
https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/tag/v0.4.1
6363

6464
<!-- x-release-please-end -->
6565

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- x-release-please-start-version -->
88

9-
# Rust MCP FileSystem (v0.4.0)
9+
# Rust MCP FileSystem (v0.4.1)
1010

1111
<!-- x-release-please-end -->
1212

docs/guide/install.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<!-- x-release-please-start-version -->
88

99
```sh
10-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.sh | sh
10+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.sh | sh
1111
```
1212

1313
#### **PowerShell script**
1414

1515
```sh
16-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.ps1 | iex"
16+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.ps1 | iex"
1717
```
1818

1919
<!-- x-release-please-end -->
@@ -51,78 +51,78 @@ brew install rust-mcp-stack/tap/rust-mcp-filesystem
5151
<tr>
5252
<td>
5353
<!-- x-release-please-start-version -->
54-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz">rust-mcp-filesystem-aarch64-apple-darwin.tar.gz</a>
54+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz">rust-mcp-filesystem-aarch64-apple-darwin.tar.gz</a>
5555
<!-- x-release-please-end -->
5656
</td>
5757
<td>Apple Silicon macOS</td>
5858
<td>
5959
<!-- x-release-please-start-version -->
60-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz.sha256">checksum</a>
60+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz.sha256">checksum</a>
6161
<!-- x-release-please-end -->
6262
</td>
6363
</tr>
6464
<tr>
6565
<td>
6666
<!-- x-release-please-start-version -->
67-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz">rust-mcp-filesystem-x86_64-apple-darwin.tar.gz</a>
67+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz">rust-mcp-filesystem-x86_64-apple-darwin.tar.gz</a>
6868
<!-- x-release-please-end -->
6969
</td>
7070
<td>Intel macOS</td>
7171
<td>
7272
<!-- x-release-please-start-version -->
73-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz.sha256">checksum</a>
73+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz.sha256">checksum</a>
7474
<!-- x-release-please-end -->
7575
</td>
7676
</tr>
7777
<tr>
7878
<td>
7979
<!-- x-release-please-start-version -->
80-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip">rust-mcp-filesystem-x86_64-pc-windows-msvc.zip</a>
80+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip">rust-mcp-filesystem-x86_64-pc-windows-msvc.zip</a>
8181
<!-- x-release-please-end -->
8282
</td>
8383
<td>x64 Windows (zip)</td>
8484
<td>
8585
<!-- x-release-please-start-version -->
86-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip.sha256">checksum</a>
86+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip.sha256">checksum</a>
8787
<!-- x-release-please-end -->
8888
</td>
8989
</tr>
9090
<tr>
9191
<td>
9292
<!-- x-release-please-start-version -->
93-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi">rust-mcp-filesystem-x86_64-pc-windows-msvc.msi</a>
93+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi">rust-mcp-filesystem-x86_64-pc-windows-msvc.msi</a>
9494
<!-- x-release-please-end -->
9595
</td>
9696
<td>x64 Windows (msi)</td>
9797
<td>
9898
<!-- x-release-please-start-version -->
99-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi.sha256">checksum</a>
99+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi.sha256">checksum</a>
100100
<!-- x-release-please-end -->
101101
</td>
102102
</tr>
103103
<tr>
104104
<td>
105105
<!-- x-release-please-start-version -->
106-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz</a>
106+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz</a>
107107
<!-- x-release-please-end -->
108108
</td>
109109
<td>ARM64 Linux</td>
110110
<td>
111111
<!-- x-release-please-start-version -->
112-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
112+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
113113
<!-- x-release-please-end -->
114114
</td>
115115
</tr>
116116
<tr>
117117
<td>
118118
<!-- x-release-please-start-version -->
119-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz</a>
119+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz</a>
120120
<!-- x-release-please-end -->
121121
</td>
122122
<td>x64 Linux</td>
123123
<td>
124124
<!-- x-release-please-start-version -->
125-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
125+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
126126
<!-- x-release-please-end -->
127127
</td>
128128
</tr>

docs/quickstart.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<!-- x-release-please-start-version -->
88

99
```sh
10-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.sh | sh
10+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.sh | sh
1111
```
1212

1313
#### **PowerShell script**
1414

1515
```sh
16-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-installer.ps1 | iex"
16+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.ps1 | iex"
1717
```
1818

1919
<!-- x-release-please-end -->
@@ -52,78 +52,78 @@ brew install rust-mcp-stack/tap/rust-mcp-filesystem
5252
<tr>
5353
<td>
5454
<!-- x-release-please-start-version -->
55-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz">rust-mcp-filesystem-aarch64-apple-darwin.tar.gz</a>
55+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz">rust-mcp-filesystem-aarch64-apple-darwin.tar.gz</a>
5656
<!-- x-release-please-end -->
5757
</td>
5858
<td>Apple Silicon macOS</td>
5959
<td>
6060
<!-- x-release-please-start-version -->
61-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz.sha256">checksum</a>
61+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-apple-darwin.tar.gz.sha256">checksum</a>
6262
<!-- x-release-please-end -->
6363
</td>
6464
</tr>
6565
<tr>
6666
<td>
6767
<!-- x-release-please-start-version -->
68-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz">rust-mcp-filesystem-x86_64-apple-darwin.tar.gz</a>
68+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz">rust-mcp-filesystem-x86_64-apple-darwin.tar.gz</a>
6969
<!-- x-release-please-end -->
7070
</td>
7171
<td>Intel macOS</td>
7272
<td>
7373
<!-- x-release-please-start-version -->
74-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz.sha256">checksum</a>
74+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-apple-darwin.tar.gz.sha256">checksum</a>
7575
<!-- x-release-please-end -->
7676
</td>
7777
</tr>
7878
<tr>
7979
<td>
8080
<!-- x-release-please-start-version -->
81-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip">rust-mcp-filesystem-x86_64-pc-windows-msvc.zip</a>
81+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip">rust-mcp-filesystem-x86_64-pc-windows-msvc.zip</a>
8282
<!-- x-release-please-end -->
8383
</td>
8484
<td>x64 Windows (zip)</td>
8585
<td>
8686
<!-- x-release-please-start-version -->
87-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip.sha256">checksum</a>
87+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.zip.sha256">checksum</a>
8888
<!-- x-release-please-end -->
8989
</td>
9090
</tr>
9191
<tr>
9292
<td>
9393
<!-- x-release-please-start-version -->
94-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi">rust-mcp-filesystem-x86_64-pc-windows-msvc.msi</a>
94+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi">rust-mcp-filesystem-x86_64-pc-windows-msvc.msi</a>
9595
<!-- x-release-please-end -->
9696
</td>
9797
<td>x64 Windows (msi)</td>
9898
<td>
9999
<!-- x-release-please-start-version -->
100-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi.sha256">checksum</a>
100+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-pc-windows-msvc.msi.sha256">checksum</a>
101101
<!-- x-release-please-end -->
102102
</td>
103103
</tr>
104104
<tr>
105105
<td>
106106
<!-- x-release-please-start-version -->
107-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz</a>
107+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz</a>
108108
<!-- x-release-please-end -->
109109
</td>
110110
<td>ARM64 Linux</td>
111111
<td>
112112
<!-- x-release-please-start-version -->
113-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
113+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
114114
<!-- x-release-please-end -->
115115
</td>
116116
</tr>
117117
<tr>
118118
<td>
119119
<!-- x-release-please-start-version -->
120-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz</a>
120+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz">rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz</a>
121121
<!-- x-release-please-end -->
122122
</td>
123123
<td>x64 Linux</td>
124124
<td>
125125
<!-- x-release-please-start-version -->
126-
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.0/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
126+
<a href="https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a>
127127
<!-- x-release-please-end -->
128128
</td>
129129
</tr>

0 commit comments

Comments
 (0)