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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = ["prover-benches"]

[workspace.package]
edition = "2021"
version = "0.3.5"
version = "0.3.6"
authors = ["The Nexus Team <hello@nexus.xyz>"]
homepage = "https://nexus.xyz/"
repository = "https://github.com/nexus-xyz/nexus-zkvm/"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/command/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn handle_command(args: HostArgs) -> anyhow::Result<()> {

if rev.is_none() && tag.is_none() {
// default to current release
tag = Some(String::from("0.3.5"));
tag = Some(String::from("0.3.6"));
}

setup_crate(path, rev, tag)
Expand Down
2 changes: 1 addition & 1 deletion sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ rustup target add riscv32im-unknown-none-elf
Then, install the Nexus zkVM:

```shell
$ rustup run nightly-2025-05-09 cargo install --git https://github.com/nexus-xyz/nexus-zkvm cargo-nexus --tag 'v0.3.5'
$ rustup run nightly-2025-05-09 cargo install --git https://github.com/nexus-xyz/nexus-zkvm cargo-nexus --tag 'v0.3.6'
```

And verify the installation:
Expand Down
Loading