Skip to content

Commit ad00701

Browse files
committed
chore: bump version to v0.3.0
1 parent c4277a9 commit ad00701

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

CHANGELOG.md

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

3+
## 0.3.0 (2025-04-12)
4+
5+
### ⚠️ BREAKING CHANGES
6+
7+
* build(deps): bump comrak from 0.36.0 to 0.38.0 by @dependabot in #148
8+
9+
### Features
10+
11+
* feat: tags by @akiomik in #92
12+
* feat: shell completion by @akiomik in #125
13+
14+
### Other Changes
15+
16+
* chore: bump packages to v0.2.2 by @akiomik in #121
17+
* chore: update README.md by @akiomik in #122
18+
* refactor: add enum Tag by @akiomik in #123
19+
* chore: enable clippy::integer_division_remainder_used by @akiomik in #124
20+
* build(deps): bump tempfile from 3.16.0 to 3.17.0 by @dependabot in #127
21+
* build(deps): bump clap from 4.5.28 to 4.5.29 by @dependabot in #126
22+
* build(deps): bump serde from 1.0.217 to 1.0.219 by @dependabot in #135
23+
* build(deps): bump etcetera from 0.8.0 to 0.10.0 by @dependabot in #134
24+
* build(deps): bump tempfile from 3.17.0 to 3.18.0 by @dependabot in #133
25+
* build(deps): bump clap from 4.5.29 to 4.5.31 by @dependabot in #128
26+
* build(deps): bump globset from 0.4.15 to 0.4.16 by @dependabot in #131
27+
* build(deps): bump comrak from 0.35.0 to 0.36.0 by @dependabot in #139
28+
* build(deps): bump scraper from 0.22.0 to 0.23.1 by @dependabot in #138
29+
* build(deps): bump indoc from 2.0.5 to 2.0.6 by @dependabot in #137
30+
* build(deps): bump tempfile from 3.18.0 to 3.19.0 by @dependabot in #136
31+
* build(deps): bump mimalloc from 0.1.43 to 0.1.45 by @dependabot in #147
32+
* build(deps): bump clap from 4.5.32 to 4.5.35 by @dependabot in #146
33+
* build(deps): bump tempfile from 3.19.0 to 3.19.1 by @dependabot in #145
34+
* refactor: make subcommand required by @akiomik in #149
35+
* build(deps): bump comrak from 0.36.0 to 0.38.0 by @dependabot in #148
36+
337
## 0.2.2 (2025-02-16)
438

539
### Features

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,7 +1,7 @@
11
[package]
22
name = "mado"
33
description = "A fast Markdown linter."
4-
version = "0.2.2"
4+
version = "0.3.0"
55
edition = "2021"
66
repository = "https://github.com/akiomik/mado"
77
license = "Apache-2.0"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ Mado is compatible with GitHub Actions.
150150

151151
```yaml
152152
# Basic usage (runs `mado check .`)
153-
- uses: akiomik/mado@v0.2.2
153+
- uses: akiomik/mado@v0.3.0
154154

155155
# Custom usage (runs `mado` with specified arguments)
156-
- uses: akiomik/mado@v0.2.2
156+
- uses: akiomik/mado@v0.3.0
157157
with:
158158
args: '--config path/to/mado.toml check path/to/*.md'
159159
```

action/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
COMMAND="mado"
4-
VERSION="v0.2.2"
4+
VERSION="v0.3.0"
55
INSTALL_DIR="$HOME/bin"
66
COMMAND_PATH="$INSTALL_DIR/$COMMAND"
77

0 commit comments

Comments
 (0)