Skip to content

Commit c9b61b7

Browse files
committed
πŸš€ Bump version to 0.2.1
1 parent d3f47c9 commit c9b61b7

File tree

27 files changed

+73
-73
lines changed

27 files changed

+73
-73
lines changed

β€ŽCargo.lockβ€Ž

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ compact_str = "0.9.0"
2323
dirs = "6.0.0"
2424
itertools = "0.14.0"
2525
miette = {version = "7.6.0"}
26-
mq-formatter = {path = "./crates/mq-formatter", version = "0.2.0"}
27-
mq-hir = {path = "./crates/mq-hir", version = "0.2.0"}
28-
mq-lang = {path = "./crates/mq-lang", version = "0.2.0"}
29-
mq-lsp = {path = "./crates/mq-lsp", version = "0.2.0"}
30-
mq-markdown = {path = "./crates/mq-markdown", version = "0.2.0"}
31-
mq-mcp = {path = "./crates/mq-mcp", version = "0.2.0"}
32-
mq-repl = {path = "./crates/mq-repl", version = "0.2.0"}
33-
mq-test = {path = "./crates/mq-test", version = "0.2.0"}
34-
mq-tui = {path = "./crates/mq-tui", version = "0.2.0"}
26+
mq-formatter = {path = "./crates/mq-formatter", version = "0.2.1"}
27+
mq-hir = {path = "./crates/mq-hir", version = "0.2.1"}
28+
mq-lang = {path = "./crates/mq-lang", version = "0.2.1"}
29+
mq-lsp = {path = "./crates/mq-lsp", version = "0.2.1"}
30+
mq-markdown = {path = "./crates/mq-markdown", version = "0.2.1"}
31+
mq-mcp = {path = "./crates/mq-mcp", version = "0.2.1"}
32+
mq-repl = {path = "./crates/mq-repl", version = "0.2.1"}
33+
mq-test = {path = "./crates/mq-test", version = "0.2.1"}
34+
mq-tui = {path = "./crates/mq-tui", version = "0.2.1"}
3535
rustc-hash = "2.1.1"
3636
thiserror = "2.0.12"
3737
url = "2.5.4"

β€ŽREADME.mdβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ mq makes working with Markdown files as easy as jq makes working with JSON. It's
5050
### Cargo
5151

5252
```sh
53-
$ cargo install --git https://github.com/harehare/mq.git mq-cli --tag v0.2.0
53+
$ cargo install --git https://github.com/harehare/mq.git mq-cli --tag v0.2.1
5454
# Latest Development Version
5555
$ cargo install --git https://github.com/harehare/mq.git mq-cli
5656
```
@@ -61,19 +61,19 @@ You can download pre-built binaries from the [GitHub releases page](https://gith
6161

6262
```sh
6363
# macOS (Intel)
64-
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.0/mq-x86_64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
64+
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.1/mq-x86_64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
6565

6666
# macOS (Apple Silicon)
67-
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.0/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
67+
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.1/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
6868

6969
# Linux x86_64
70-
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.0/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
70+
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.1/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
7171

7272
# Linux arm64
73-
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.0/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
73+
$ curl -L https://github.com/harehare/mq/releases/download/v0.2.1/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
7474

7575
# Windows (PowerShell)
76-
$ Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.2.0/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
76+
$ Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.2.1/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
7777
```
7878

7979
### Homebrew
@@ -86,7 +86,7 @@ $ brew install harehare/tap/mq
8686
### Docker
8787

8888
```sh
89-
$ docker run --rm ghcr.io/harehare/mq:0.2.0
89+
$ docker run --rm ghcr.io/harehare/mq:0.2.1
9090
```
9191

9292
### Visual Studio Code Extension

β€Žcrates/mq-cli/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license-file = "LICENSE"
2020
name = "mq-cli"
2121
readme = "README.md"
2222
repository = "https://github.com/harehare/mq"
23-
version = "0.2.0"
23+
version = "0.2.1"
2424

2525
[dependencies]
2626
clap = {version = "4.5.39", features = ["derive"]}

β€Žcrates/mq-cli/src/cli.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::{fs, path::PathBuf};
1313
#[derive(Parser, Debug, Default)]
1414
#[command(name = "mq")]
1515
#[command(author = "Takahiro Sato. <harehare1110@gmail.com>")]
16-
#[command(version = "0.2.0")]
16+
#[command(version = "0.2.1")]
1717
#[command(after_help = "Examples:\n\n\
1818
To filter markdown nodes:\n\
1919
$ mq 'query' file.md\n\n\

β€Žcrates/mq-formatter/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license-file = "LICENSE"
88
name = "mq-formatter"
99
readme = "README.md"
1010
repository = "https://github.com/harehare/mq"
11-
version = "0.2.0"
11+
version = "0.2.1"
1212

1313
[dependencies]
1414
mq-lang = {workspace = true, features = ["cst"]}

β€Žcrates/mq-hir/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license-file = "LICENSE"
88
name = "mq-hir"
99
readme = "README.md"
1010
repository = "https://github.com/harehare/mq"
11-
version = "0.2.0"
11+
version = "0.2.1"
1212

1313
[dependencies]
1414
compact_str = {workspace = true}

β€Žcrates/mq-lang/Cargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license-file = "LICENSE"
1010
name = "mq-lang"
1111
readme = "README.md"
1212
repository = "https://github.com/harehare/mq"
13-
version = "0.2.0"
13+
version = "0.2.1"
1414

1515
[dependencies]
1616
base64 = "0.22.1"
@@ -35,7 +35,7 @@ std = []
3535

3636
[dev-dependencies]
3737
divan = {version = "2.8.1", package = "codspeed-divan-compat"}
38-
mq-test = {path = "../../crates/mq-test", version = "0.2.0"}
38+
mq-test = {path = "../../crates/mq-test", version = "0.2.1"}
3939
rstest = "0.25.0"
4040

4141
[[bench]]

β€Žcrates/mq-lsp/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license-file = "LICENSE"
99
name = "mq-lsp"
1010
readme = "README.md"
1111
repository = "https://github.com/harehare/mq/crate/mq-lsp"
12-
version = "0.2.0"
12+
version = "0.2.1"
1313

1414
[dependencies]
1515
bimap = "0.6.3"

β€Žcrates/mq-markdown/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license-file = "LICENSE"
88
name = "mq-markdown"
99
readme = "README.md"
1010
repository = "https://github.com/harehare/mq"
11-
version = "0.2.0"
11+
version = "0.2.1"
1212

1313
[dependencies]
1414
compact_str = {workspace = true}

0 commit comments

Comments
Β (0)