Skip to content

Commit

Permalink
Release version 0.11.1 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
flaub committed Aug 13, 2022
1 parent bd30d80 commit ce8f9b9
Show file tree
Hide file tree
Showing 17 changed files with 51 additions and 51 deletions.
26 changes: 13 additions & 13 deletions Cargo-host.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ dependencies = [

[[package]]
name = "risc0-build"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"cargo_metadata",
"reqwest",
Expand All @@ -1531,23 +1531,23 @@ dependencies = [

[[package]]
name = "risc0-core-sys"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"cxx",
"cxx-build",
]

[[package]]
name = "risc0-make-id"
version = "0.11.0-rc.4"
version = "0.11.1"
dependencies = [
"clap 3.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
"risc0-zkvm",
]

[[package]]
name = "risc0-r0vm"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"anyhow",
"assert_cmd",
Expand All @@ -1560,7 +1560,7 @@ dependencies = [

[[package]]
name = "risc0-zkp"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"anyhow",
"array-init",
Expand All @@ -1579,7 +1579,7 @@ dependencies = [

[[package]]
name = "risc0-zkp-sys"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"cxx",
"cxx-build",
Expand All @@ -1590,7 +1590,7 @@ dependencies = [

[[package]]
name = "risc0-zkvm"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"anyhow",
"bytemuck",
Expand All @@ -1613,7 +1613,7 @@ dependencies = [

[[package]]
name = "risc0-zkvm-circuit"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"anyhow",
"env_logger",
Expand All @@ -1623,14 +1623,14 @@ dependencies = [

[[package]]
name = "risc0-zkvm-circuit-gen"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"risc0-zkvm-circuit-sys",
]

[[package]]
name = "risc0-zkvm-circuit-sys"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"anyhow",
"cxx",
Expand All @@ -1649,23 +1649,23 @@ dependencies = [

[[package]]
name = "risc0-zkvm-platform"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"compiler_builtins",
"rustc-std-workspace-core",
]

[[package]]
name = "risc0-zkvm-platform-sys"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"cxx",
"cxx-build",
]

[[package]]
name = "risc0-zkvm-sys"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"cxx",
"cxx-build",
Expand Down
2 changes: 1 addition & 1 deletion risc0/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-core-sys"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero core crate"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions risc0/zkp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkp-sys"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge proof system crate"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ path = "lib.rs"
[dependencies]
cxx = "1.0"
log = "0.4"
risc0-core-sys = { version = "0.11.0-rc.4", path = "../core" }
risc0-core-sys = { version = "0.11", path = "../core" }
tbb-sys = "1.1"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkp/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkp"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge proof system core crate"
license = "Apache-2.0"
Expand Down
10 changes: 5 additions & 5 deletions risc0/zkvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-sys"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM system crate"
license = "Apache-2.0"
Expand All @@ -13,10 +13,10 @@ path = "lib.rs"

[dependencies]
cxx = "1.0"
risc0-core-sys = { version = "0.11.0-rc.4", path = "../core" }
risc0-zkp-sys = { version = "0.11.0-rc.4", path = "../zkp" }
risc0-zkvm-circuit-gen = { version = "0.11.0-rc.4", path = "circuit/make-circuit" }
risc0-zkvm-circuit-sys = { version = "0.11.0-rc.4", path = "circuit" }
risc0-core-sys = { version = "0.11", path = "../core" }
risc0-zkp-sys = { version = "0.11", path = "../zkp" }
risc0-zkvm-circuit-gen = { version = "0.11", path = "circuit/make-circuit" }
risc0-zkvm-circuit-sys = { version = "0.11", path = "circuit" }
tbb-sys = "1.1"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions risc0/zkvm/circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-circuit-sys"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM circuit crate"
license = "Apache-2.0"
Expand All @@ -14,8 +14,8 @@ path = "lib.rs"
[dependencies]
anyhow = "1.0"
cxx = "1.0"
risc0-zkp-sys = { version = "0.11.0-rc.4", path = "../../zkp" }
risc0-zkvm-platform-sys = { version = "0.11.0-rc.4", path = "../platform" }
risc0-zkp-sys = { version = "0.11", path = "../../zkp" }
risc0-zkvm-platform-sys = { version = "0.11", path = "../platform" }

[build-dependencies]
cxx-build = "1.0"
4 changes: 2 additions & 2 deletions risc0/zkvm/circuit/make-circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-circuit-gen"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC-V circuit (generated)"
license = "Apache-2.0"
Expand All @@ -12,4 +12,4 @@ links = "risc0-zkvm-circuit-gen"
path = "lib.rs"

[build-dependencies]
risc0-zkvm-circuit-sys = { version = "0.11.0-rc.4", path = ".." }
risc0-zkvm-circuit-sys = { version = "0.11", path = ".." }
2 changes: 1 addition & 1 deletion risc0/zkvm/platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-platform-sys"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM platform crate"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions risc0/zkvm/prove/make-id/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "risc0-make-id"
version = "0.11.0-rc.4"
version = "0.11.1"
edition = "2021"

[dependencies]
clap = { version = "3.2", features = ["derive"] }
risc0-zkvm = { version = "0.11.0-rc.4", path = "../../sdk/rust" }
risc0-zkvm = { version = "0.11", path = "../../sdk/rust" }

[package.metadata.release]
release = false
4 changes: 2 additions & 2 deletions risc0/zkvm/r0vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-r0vm"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM executable"
license = "Apache-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/risc0/risc0/"
[dependencies]
bytemuck = { version = "1.9" }
clap = { version = "3.2", features = ["derive"] }
risc0-zkvm = { version = "0.11.0-rc.4", path = "../sdk/rust" }
risc0-zkvm = { version = "0.11", path = "../sdk/rust" }

[dev-dependencies]
anyhow = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions risc0/zkvm/sdk/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM"
license = "Apache-2.0"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/risc0/risc0/"

[dependencies]
bytemuck = "1.9"
risc0-zkp = { version = "0.11.0-rc.4", path = "../../../zkp/rust", default-features = false }
risc0-zkvm-platform = { version = "0.11.0-rc.4", path = "platform" }
risc0-zkp = { version = "0.11", path = "../../../zkp/rust", default-features = false }
risc0-zkvm-platform = { version = "0.11", path = "platform" }
serde = { version = "1.0", default-features = false, features = ["derive"] }

[dev-dependencies]
Expand All @@ -27,8 +27,8 @@ ctor = "0.1"
cxx = "1.0"
log = "0.4"
rand = "0.8"
risc0-zkvm-circuit = { version = "0.11.0-rc.4", path = "circuit", optional = true }
risc0-zkvm-sys = { version = "0.11.0-rc.4", path = "../.." }
risc0-zkvm-circuit = { version = "0.11", path = "circuit", optional = true }
risc0-zkvm-sys = { version = "0.11", path = "../.." }
sha2 = "0.10"
xmas-elf = "0.8"

Expand Down
6 changes: 3 additions & 3 deletions risc0/zkvm/sdk/rust/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-build"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM build tool"
license = "Apache-2.0"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/risc0/risc0/"
[dependencies]
cargo_metadata = "0.15"
reqwest = { version = "0.11", features = ["rustls-tls", "blocking"] }
risc0-zkvm = { version = "0.11.0-rc.4", path = ".." }
risc0-zkvm-platform-sys = { version = "0.11.0-rc.4", path = "../../../platform" }
risc0-zkvm = { version = "0.11", path = ".." }
risc0-zkvm-platform-sys = { version = "0.11", path = "../../../platform" }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
Expand Down
4 changes: 2 additions & 2 deletions risc0/zkvm/sdk/rust/circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-circuit"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM circuit"
license = "Apache-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/risc0/risc0/"
[dependencies]
anyhow = "1.0"
log = "0.4"
risc0-zkp = { version = "0.11.0-rc.4", path = "../../../../zkp/rust" }
risc0-zkp = { version = "0.11", path = "../../../../zkp/rust" }

[dev-dependencies]
env_logger = "0.9"
Expand Down
8 changes: 4 additions & 4 deletions risc0/zkvm/sdk/rust/guest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-guest"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM guest crate"
license = "Apache-2.0"
Expand All @@ -9,12 +9,12 @@ repository = "https://github.com/risc0/risc0/"

[dependencies]
bytemuck = "1.9"
risc0-zkp = { version = "0.11.0-rc.4", path = "../../../../zkp/rust", default-features = false }
risc0-zkvm = { version = "0.11.0-rc.4", path = "..", default-features = false }
risc0-zkp = { version = "0.11", path = "../../../../zkp/rust", default-features = false }
risc0-zkvm = { version = "0.11", path = "..", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }

[build-dependencies]
risc0-build = { version = "0.11.0-rc.4", path = "../build" }
risc0-build = { version = "0.11", path = "../build" }

[features]
bazel = []
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkvm/sdk/rust/methods/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[build-dependencies]
risc0-build = { version = "0.11.0-rc.4", path = "../build" }
risc0-build = { version = "0.11", path = "../build" }

[package.metadata.release]
release = false
Expand Down
6 changes: 3 additions & 3 deletions risc0/zkvm/sdk/rust/methods/inner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"

[dependencies]
bytemuck = "1.11"
risc0-zkp = { version = "0.11.0-rc.4", path = "../../../../../zkp/rust", default-features = false }
risc0-zkvm-guest = { version = "0.11.0-rc.4", path = "../../guest", default-features = false, features = ["std"] }
risc0-zkp = { version = "0.11", path = "../../../../../zkp/rust", default-features = false }
risc0-zkvm-guest = { version = "0.11", path = "../../guest", default-features = false, features = ["std"] }
risc0-zkvm-methods = { version = "0.1", path = "..", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }

Expand All @@ -17,7 +17,7 @@ lto = true
opt-level = "z"

[build-dependencies]
risc0-build = { version = "0.11.0-rc.4", path = "../../build" }
risc0-build = { version = "0.11", path = "../../build" }

[package.metadata.release]
release = false
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkvm/sdk/rust/platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-platform"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "RISC Zero zero-knowledge VM"
license = "Apache-2.0"
Expand Down

0 comments on commit ce8f9b9

Please sign in to comment.