Skip to content

Commit 15595ea

Browse files
committed
⬆️ Bump version from 0.1.4 to 0.1.5
1 parent fb91c4e commit 15595ea

File tree

19 files changed

+66
-66
lines changed

19 files changed

+66
-66
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license-file = "LICENSE"
2121
name = "mq-cli"
2222
readme = "README.md"
2323
repository = "https://github.com/harehare/mq"
24-
version = "0.1.4"
24+
version = "0.1.5"
2525

2626
[workspace]
2727
members = [
@@ -50,7 +50,7 @@ mq-formatter = {workspace = true}
5050
mq-hir = {workspace = true}
5151
mq-lang = {workspace = true}
5252
mq-markdown = {workspace = true, features = ["json"]}
53-
mq-repl = {path = "./crates/mq-repl", version = "0.1.4"}
53+
mq-repl = {path = "./crates/mq-repl", version = "0.1.5"}
5454
rayon = "1.10.0"
5555
url = {workspace = true}
5656

@@ -64,11 +64,11 @@ compact_str = "0.9.0"
6464
dirs = "6.0.0"
6565
itertools = "0.14.0"
6666
miette = {version = "7.6.0"}
67-
mq-formatter = {path = "./crates/mq-formatter", version = "0.1.4"}
68-
mq-hir = {path = "./crates/mq-hir", version = "0.1.4"}
69-
mq-lang = {path = "./crates/mq-lang", version = "0.1.4"}
70-
mq-markdown = {path = "./crates/mq-markdown", version = "0.1.4"}
71-
mq-test = {path = "./crates/mq-test", version = "0.1.4"}
67+
mq-formatter = {path = "./crates/mq-formatter", version = "0.1.5"}
68+
mq-hir = {path = "./crates/mq-hir", version = "0.1.5"}
69+
mq-lang = {path = "./crates/mq-lang", version = "0.1.5"}
70+
mq-markdown = {path = "./crates/mq-markdown", version = "0.1.5"}
71+
mq-test = {path = "./crates/mq-test", version = "0.1.5"}
7272
rustc-hash = "2.1.1"
7373
thiserror = "2.0.12"
7474
url = "2.5.4"

README.md

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

4141
```sh
42-
$ cargo install --git https://github.com/harehare/mq.git mq-cli --tag v0.1.4
42+
$ cargo install --git https://github.com/harehare/mq.git mq-cli --tag v0.1.5
4343
# Latest Development Version
4444
$ cargo install --git https://github.com/harehare/mq.git mq-cli
4545
```
@@ -50,19 +50,19 @@ You can download pre-built binaries from the [GitHub releases page](https://gith
5050

5151
```sh
5252
# macOS (Intel)
53-
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.4/mq-x86_64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
53+
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.5/mq-x86_64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
5454

5555
# macOS (Apple Silicon)
56-
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.4/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
56+
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.5/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
5757

5858
# Linux x86_64
59-
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.4/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
59+
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.5/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
6060

6161
# Linux arm64
62-
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.4/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
62+
$ curl -L https://github.com/harehare/mq/releases/download/v0.1.5/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
6363

6464
# Windows (PowerShell)
65-
$ Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.1.4/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
65+
$ Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.1.5/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
6666
```
6767

6868
### Homebrew
@@ -75,7 +75,7 @@ $ brew install harehare/tap/mq
7575
### Docker
7676

7777
```sh
78-
$ docker run --rm ghcr.io/harehare/mq:0.1.4
78+
$ docker run --rm ghcr.io/harehare/mq:0.1.5
7979
```
8080

8181
### Visual Studio Code Extension
@@ -128,8 +128,8 @@ Commands:
128128
help Print this message or the help of the given subcommand(s)
129129
130130
Arguments:
131-
[QUERY OR FILE]
132-
[FILES]...
131+
[QUERY OR FILE]
132+
[FILES]...
133133
134134
Options:
135135
-f, --from-file

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.1.4"
11+
version = "0.1.5"
1212

1313
[dependencies]
1414
mq-lang = {workspace = true}

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.1.4"
11+
version = "0.1.5"
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.1.4"
13+
version = "0.1.5"
1414

1515
[dependencies]
1616
base64 = "0.22.1"
@@ -32,7 +32,7 @@ thiserror = {workspace = true}
3232

3333
[dev-dependencies]
3434
divan = {version = "2.8.1", package = "codspeed-divan-compat"}
35-
mq-test = {path = "../../crates/mq-test", version = "0.1.4"}
35+
mq-test = {path = "../../crates/mq-test", version = "0.1.5"}
3636
rstest = "0.25.0"
3737

3838
[[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.1.4"
12+
version = "0.1.5"
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.1.4"
11+
version = "0.1.5"
1212

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

crates/mq-mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Model Context Protocol (MCP) server implementation for mq"
33
edition = "2024"
44
license = "MIT"
55
name = "mq-mcp"
6-
version = "0.1.4"
6+
version = "0.1.5"
77

88
[dependencies]
99
miette = {workspace = true}

crates/mq-repl/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-repl"
99
readme = "README.md"
1010
repository = "https://github.com/harehare/mq"
11-
version = "0.1.4"
11+
version = "0.1.5"
1212

1313
[dependencies]
1414
arboard = "3.5.0"

0 commit comments

Comments
 (0)