Skip to content

Commit aea204a

Browse files
committed
✨ chore: bump version to 0.5.20 across all packages and documentation
1 parent ec24cb6 commit aea204a

File tree

21 files changed

+68
-68
lines changed

21 files changed

+68
-68
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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,37 @@ resolver = "3"
2020

2121
[workspace.dependencies]
2222
# Internal crates
23-
mq-check = {path = "crates/mq-check", version = "0.5.19"}
24-
mq-dap = {path = "crates/mq-dap", version = "0.5.19"}
25-
mq-formatter = {path = "crates/mq-formatter", version = "0.5.19"}
26-
mq-hir = {path = "crates/mq-hir", version = "0.5.19"}
27-
mq-lang = {path = "crates/mq-lang", version = "0.5.19"}
28-
mq-lsp = {path = "crates/mq-lsp", version = "0.5.19"}
29-
mq-markdown = {path = "crates/mq-markdown", version = "0.5.19"}
30-
mq-repl = {path = "crates/mq-repl", version = "0.5.19"}
23+
mq-check = {path = "crates/mq-check", version = "0.5.20"}
24+
mq-dap = {path = "crates/mq-dap", version = "0.5.20"}
25+
mq-formatter = {path = "crates/mq-formatter", version = "0.5.20"}
26+
mq-hir = {path = "crates/mq-hir", version = "0.5.20"}
27+
mq-lang = {path = "crates/mq-lang", version = "0.5.20"}
28+
mq-lsp = {path = "crates/mq-lsp", version = "0.5.20"}
29+
mq-markdown = {path = "crates/mq-markdown", version = "0.5.20"}
30+
mq-repl = {path = "crates/mq-repl", version = "0.5.20"}
3131
# External dependencies
3232
arbitrary = {version = "1.4.2", features = ["derive"]}
3333
arboard = {version = "3.6.1", default-features = false}
3434
assert_cmd = "2.2.0"
3535
async-trait = "0.1.83"
3636
axum = "0.8.8"
3737
base64 = "0.22.1"
38-
csv = "1.4"
3938
bimap = "0.6.3"
4039
cbindgen = "0.29.2"
40+
chromiumoxide = {version = "0.9", default-features = false}
4141
chrono = "0.4.44"
4242
clap = "4.6.0"
4343
colored = "3.1.1"
4444
crossbeam = "0.8.4"
4545
crossbeam-channel = "0.5.15"
46+
csv = "1.4"
4647
dap = "0.4.1-alpha1"
4748
dashmap = "6.1.0"
4849
deadpool-libsql = "0.1.0"
4950
dirs = "6.0.0"
5051
divan = {version = "3.0.5", package = "codspeed-divan-compat"}
5152
ego-tree = "0.10.0"
52-
chromiumoxide = {version = "0.9", default-features = false}
5353
fantoccini = {version = "0.22.1", default-features = false, features = ["rustls-tls"]}
54-
rustls = {version = "0.23", default-features = false, features = ["ring"]}
5554
futures = "0.3"
5655
httpmock = "0.8.2"
5756
itertools = "0.14.0"
@@ -75,6 +74,7 @@ robots_txt = "0.7"
7574
ropey = "1.6"
7675
rstest = "0.26.1"
7776
rustc-hash = "2.1.1"
77+
rustls = {version = "0.23", default-features = false, features = ["ring"]}
7878
rustyline = {version = "17.0.2", default-features = false}
7979
scopeguard = "1.2.0"
8080
scraper = "0.25.0"

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ The installer will:
7272
# Install from crates.io
7373
cargo install mq-run
7474
# Install from Github
75-
cargo install --git https://github.com/harehare/mq.git mq-run --tag v0.5.19
75+
cargo install --git https://github.com/harehare/mq.git mq-run --tag v0.5.20
7676
# Latest Development Version
7777
cargo install --git https://github.com/harehare/mq.git mq-run --bin mq
7878
# Install the debugger
7979
cargo install --git https://github.com/harehare/mq.git mq-run --bin mq-dbg --features="debugger"
8080
# Install using binstall
81-
cargo binstall [email protected].19
81+
cargo binstall [email protected].20
8282
```
8383

8484
### Binaries
@@ -87,13 +87,13 @@ You can download pre-built binaries from the [GitHub releases page](https://gith
8787

8888
```sh
8989
# macOS (Apple Silicon)
90-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
90+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-aarch64-apple-darwin -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
9191
# Linux x86_64
92-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
92+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-x86_64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
9393
# Linux arm64
94-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
94+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-aarch64-unknown-linux-gnu -o /usr/local/bin/mq && chmod +x /usr/local/bin/mq
9595
# Windows (PowerShell)
96-
Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.5.19/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
96+
Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.5.20/mq-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq.exe"
9797
```
9898

9999
### Homebrew
@@ -106,7 +106,7 @@ brew install mq
106106
### Docker
107107

108108
```sh
109-
$ docker run --rm ghcr.io/harehare/mq:0.5.19
109+
$ docker run --rm ghcr.io/harehare/mq:0.5.20
110110
```
111111

112112
### mq-lsp (Language Server)
@@ -125,11 +125,11 @@ curl -sSL https://mqlang.org/install_lsp.sh | bash
125125
# Install from crates.io
126126
cargo install mq-lsp
127127
# Install from Github
128-
cargo install --git https://github.com/harehare/mq.git mq-lsp --tag v0.5.19
128+
cargo install --git https://github.com/harehare/mq.git mq-lsp --tag v0.5.20
129129
# Latest Development Version
130130
cargo install --git https://github.com/harehare/mq.git mq-lsp
131131
# Install using binstall
132-
cargo binstall [email protected].19
132+
cargo binstall [email protected].20
133133
```
134134

135135
#### Binaries
@@ -138,13 +138,13 @@ You can download pre-built binaries from the [GitHub releases page](https://gith
138138

139139
```sh
140140
# macOS (Apple Silicon)
141-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-lsp-aarch64-apple-darwin -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
141+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-lsp-aarch64-apple-darwin -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
142142
# Linux x86_64
143-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-lsp-x86_64-unknown-linux-gnu -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
143+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-lsp-x86_64-unknown-linux-gnu -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
144144
# Linux arm64
145-
curl -L https://github.com/harehare/mq/releases/download/v0.5.19/mq-lsp-aarch64-unknown-linux-gnu -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
145+
curl -L https://github.com/harehare/mq/releases/download/v0.5.20/mq-lsp-aarch64-unknown-linux-gnu -o /usr/local/bin/mq-lsp && chmod +x /usr/local/bin/mq-lsp
146146
# Windows (PowerShell)
147-
Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.5.19/mq-lsp-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq-lsp.exe"
147+
Invoke-WebRequest -Uri https://github.com/harehare/mq/releases/download/v0.5.20/mq-lsp-x86_64-pc-windows-msvc.exe -OutFile "$env:USERPROFILE\bin\mq-lsp.exe"
148148
```
149149

150150
### Visual Studio Code Extension

crates/mq-check/Cargo.toml

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

1414
[features]
1515
cli = ["dep:clap", "dep:colored", "dep:url"]

crates/mq-crawler/Cargo.toml

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

1414
[dependencies]
1515
chromiumoxide = {workspace = true}

crates/mq-dap/Cargo.toml

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

1414
[dependencies]
1515
crossbeam-channel = {workspace = true}

crates/mq-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "mq-ffi"
1010
publish = false
1111
readme = "README.md"
1212
repository = "https://github.com/harehare/mq"
13-
version = "0.5.19"
13+
version = "0.5.20"
1414

1515
[dependencies]
1616
libc = {workspace = true}

crates/mq-formatter/Cargo.toml

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

1414
[dependencies]
1515
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
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "mq-hir"
1010
readme = "../../README.md"
1111
repository = "https://github.com/harehare/mq"
12-
version = "0.5.19"
12+
version = "0.5.20"
1313

1414
[dependencies]
1515
itertools = {workspace = true}

crates/mq-lang/Cargo.toml

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

1414
[dependencies]
1515
base64 = {workspace = true}

0 commit comments

Comments
 (0)