Skip to content

Commit ade06b8

Browse files
committed
chore: bump version to v0.2.31
1 parent 7f69695 commit ade06b8

17 files changed

Lines changed: 37 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6969

7070

7171

72+
73+
74+
## [0.2.31](https://github.com/rvben/rumdl/compare/v0.2.30...v0.2.31) - 2026-07-12
75+
76+
### Added
77+
78+
- **action**: install rumdl from GitHub Releases instead of pip ([7f69695](https://github.com/rvben/rumdl/commit/7f69695238e1ebffba75a82cf8336e777a965f4a))
79+
80+
### Performance
81+
82+
- **reflow**: optimize inline code mask calculation using pre-extracted spans ([27e5507](https://github.com/rvben/rumdl/commit/27e55072be01e075a8b6f72b7409c4b29c5f56e1))
7283

7384
## [0.2.30](https://github.com/rvben/rumdl/compare/v0.2.29...v0.2.30) - 2026-07-09
7485

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 = "rumdl"
3-
version = "0.2.30"
3+
version = "0.2.31"
44
edition = "2024"
55
rust-version = "1.94.0"
66
description = "A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ mise ls-remote rumdl
207207
mise install rumdl
208208

209209
# Use a specific version for the project
210-
mise use rumdl@0.2.30
210+
mise use rumdl@0.2.31
211211
```
212212

213213
### Using Nix (macOS/Linux)
@@ -436,7 +436,7 @@ Add the following to your `.pre-commit-config.yaml`:
436436
```yaml
437437
repos:
438438
- repo: https://github.com/rvben/rumdl-pre-commit
439-
rev: v0.2.30
439+
rev: v0.2.31
440440
hooks:
441441
- id: rumdl # Lint only; add args [--fix] to auto-fix
442442
- id: rumdl-fmt # Pure format, always exits 0
@@ -452,7 +452,7 @@ This mirrors the `ruff` + `ruff-format` split: the linter hook reports by defaul
452452
```yaml
453453
repos:
454454
- repo: https://github.com/rvben/rumdl-pre-commit
455-
rev: v0.2.30
455+
rev: v0.2.31
456456
hooks:
457457
- id: rumdl
458458
args: [--fix] # Auto-fix violations in place
@@ -469,7 +469,7 @@ However, for pre-commit workflows where you want to include all files, even when
469469
```yaml
470470
repos:
471471
- repo: https://github.com/rvben/rumdl-pre-commit
472-
rev: v0.2.30
472+
rev: v0.2.31
473473
hooks:
474474
- id: rumdl
475475
args: [--no-exclude] # Disable all exclude patterns

docs/getting-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Add to `.pre-commit-config.yaml`:
9696
```yaml
9797
repos:
9898
- repo: https://github.com/rvben/rumdl-pre-commit
99-
rev: v0.2.30 # Use latest version
99+
rev: v0.2.31 # Use latest version
100100
hooks:
101101
- id: rumdl
102102
```

docs/global-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ find . -name "*.md" -o -name "*.markdown" | head -10
13761376

13771377
```yaml
13781378
- repo: https://github.com/rvben/rumdl-pre-commit
1379-
rev: v0.2.30
1379+
rev: v0.2.31
13801380
hooks:
13811381
- id: rumdl
13821382
args: [--config=.rumdl.toml]

docs/mdformat-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ line-length = 80
232232
233233
# After
234234
- repo: https://github.com/rvben/rumdl-pre-commit
235-
rev: v0.2.30
235+
rev: v0.2.31
236236
hooks:
237237
- id: rumdl
238238
```

docs/usage/ci-cd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The `v0` tag always points to the latest stable release.
4040
```yaml
4141
- uses: rvben/rumdl@v0
4242
with:
43-
version: "0.2.30"
43+
version: "0.2.31"
4444
path: docs/
4545
```
4646

docs/usage/pre-commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add to your `.pre-commit-config.yaml`:
1313
```yaml title=".pre-commit-config.yaml"
1414
repos:
1515
- repo: https://github.com/rvben/rumdl-pre-commit
16-
rev: v0.2.30 # Use latest version
16+
rev: v0.2.31 # Use latest version
1717
hooks:
1818
- id: rumdl # Lint only; add args [--fix] to auto-fix
1919
- id: rumdl-fmt # Pure format, always exits 0

npm/cli-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": "@rumdl/cli-darwin-arm64",
3-
"version": "0.2.30",
3+
"version": "0.2.31",
44
"description": "rumdl binary for macOS ARM64 (Apple Silicon)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)