Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ brew install quickmark-cli
##### Option 2 - from crates

```shell
cargo install quickmark-cli --version 1.0.0-beta.1
cargo install quickmark-cli --version 1.0.0-beta.2
```

##### Option 3 - download from the release page
Expand Down Expand Up @@ -171,7 +171,7 @@ Or just drug and drop the file to the Extensions Pane in the editor.
Install via cargo:

```bash
cargo install quickmark-server --version 1.0.0-beta.1
cargo install quickmark-server --version 1.0.0-beta.2
```

Or download the binary for your platform from the latest [release page](https://github.com/ekropotin/quickmark/releases)
Expand Down
2 changes: 1 addition & 1 deletion crates/quickmark-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.4", features = ["derive"] }
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.1" }
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.2" }
glob = "0.3"
rayon = "1.8"
ignore = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/quickmark-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["text-processing", "development-tools", "text-editors"]

[dependencies]
anyhow = "1.0.86"
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.1" }
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.2" }
tower-lsp = "0.20.0"
tokio = { version = "1.0", features = ["full"] }

Expand Down