Skip to content

Commit b123661

Browse files
committed
chore: bump version to v0.2.21
1 parent d1b9968 commit b123661

13 files changed

Lines changed: 30 additions & 22 deletions

File tree

CHANGELOG.md

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

6060

6161

62+
63+
64+
## [0.2.21](https://github.com/rvben/rumdl/compare/v0.2.20...v0.2.21) - 2026-06-23
65+
66+
### Fixed
67+
68+
- **emphasis**: align MD049 and MD037 with CommonMark flanking (#681) ([d1b9968](https://github.com/rvben/rumdl/commit/d1b996823604470b755b7ac7b3a11f0f464a6c91))
69+
- **ci**: bump pinned Rust toolchain to 1.96.0 to unblock mise tool install ([b2afd76](https://github.com/rvben/rumdl/commit/b2afd763e67e86f8917a1f4b52f7c69e075ec318))
6270

6371
## [0.2.20](https://github.com/rvben/rumdl/compare/v0.2.19...v0.2.20) - 2026-06-19
6472

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.20"
3+
version = "0.2.21"
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.20
210+
mise use rumdl@0.2.21
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.20
439+
rev: v0.2.21
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.20
455+
rev: v0.2.21
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.20
472+
rev: v0.2.21
473473
hooks:
474474
- id: rumdl
475475
args: [--no-exclude] # Disable all exclude patterns

docs/global-settings.md

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

13751375
```yaml
13761376
- repo: https://github.com/rvben/rumdl-pre-commit
1377-
rev: v0.2.20
1377+
rev: v0.2.21
13781378
hooks:
13791379
- id: rumdl
13801380
args: [--config=.rumdl.toml]

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.20",
3+
"version": "0.2.21",
44
"description": "rumdl binary for macOS ARM64 (Apple Silicon)",
55
"license": "MIT",
66
"repository": {

npm/cli-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": "@rumdl/cli-darwin-x64",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "rumdl binary for macOS x64 (Intel)",
55
"license": "MIT",
66
"repository": {

npm/cli-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": "@rumdl/cli-linux-arm64-musl",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "rumdl binary for Linux ARM64 (musl/Alpine)",
55
"license": "MIT",
66
"repository": {

npm/cli-linux-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-linux-arm64",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "rumdl binary for Linux ARM64 (glibc)",
55
"license": "MIT",
66
"repository": {

npm/cli-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": "@rumdl/cli-linux-x64-musl",
3-
"version": "0.2.20",
3+
"version": "0.2.21",
44
"description": "rumdl binary for Linux x64 (musl/Alpine)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)