Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.4 #138

Merged
merged 2 commits into from
Sep 29, 2024
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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exclude = [ "files" ]
resolver = "2"

[workspace.dependencies]
serde = { version = "1.0.149", features = ["derive"] }
serde = { version = "=1.0.149", features = ["derive"] }

# Make snapshot testing faster
[profile.dev.package.insta]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Aquascope is a tool that generates interactive visualizations of Rust programs.
We provide an [mdBook](https://rust-lang.github.io/mdBook/) preprocessor that embeds Aquascope diagrams into an mdBook. To use it, you need to install the `mdbook-aquascope` and `cargo-aquascope` binaries as follows.

```sh
cargo install mdbook-aquascope --locked --version 0.3.3
cargo install mdbook-aquascope --locked --version 0.3.4
rustup toolchain install nightly-2023-08-25 -c rust-src rustc-dev llvm-tools-preview miri
cargo +nightly-2023-08-25 install aquascope_front --git https://github.com/cognitive-engineering-lab/aquascope --tag v0.3.3 --locked
cargo +nightly-2023-08-25 install aquascope_front --git https://github.com/cognitive-engineering-lab/aquascope --tag v0.3.4 --locked
cargo +nightly-2023-08-25 miri setup
```

Expand Down
2 changes: 1 addition & 1 deletion crates/aquascope_workspace_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [
"Will Crichton <[email protected]>",
"Gavin Gray <[email protected]>"
]
version = "0.3.3"
version = "0.3.4"
license = "MIT"
edition = "2021"
description = "Handy utilities for working in the Aquascope workspace"
Expand Down
4 changes: 2 additions & 2 deletions crates/mdbook-aquascope/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
]
description = "Interactive Aquascope editor for your mdBook"
license = "MIT"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
include = [
"src/**/*",
Expand All @@ -19,7 +19,7 @@ repository = "https://github.com/cognitive-engineering-lab/aquascope"
dev = ["mdbook-preprocessor-utils/testing"]

[dependencies]
clap = { version = "4.3.24", features = ["derive"] }
clap = { version = "=4.3.24", features = ["derive"] }
mdbook-preprocessor-utils = "0.2.0"
nom = "7"
nom_locate = "4"
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"depot": {
"depot-version": "0.2.16"
"depot-version": "0.2.17"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
Expand Down
Loading