Skip to content

Commit

Permalink
Merge branch 'next' into v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth authored Aug 13, 2024
2 parents 431f917 + 43c4e39 commit 337bf2b
Show file tree
Hide file tree
Showing 14 changed files with 85 additions and 121 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## 0.11.0 (TBD)

## 0.10.3 (2024-08-12)

#### Enhancements
Expand Down
112 changes: 37 additions & 75 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Miden VM is a zero-knowledge virtual machine written in Rust. For any program ex

### Status and features

Miden VM is currently on release v0.10. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward.
Miden VM is currently on release v0.11. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward.

The next version of the VM is being developed in the [next](https://github.com/0xPolygonMiden/miden-vm/tree/next) branch. There is also a documentation for the latest features and changes in the next branch [documentation next branch](https://0xpolygonmiden.github.io/miden-vm/intro/main.html).

Expand Down
6 changes: 3 additions & 3 deletions air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-air"
version = "0.10.3"
version = "0.11.0"
description = "Algebraic intermediate representation of Miden VM processor"
documentation = "https://docs.rs/miden-air/0.10.3"
documentation = "https://docs.rs/miden-air/0.11.0"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["air", "arithmetization", "crypto", "miden"]
Expand Down Expand Up @@ -32,7 +32,7 @@ testing = []

[dependencies]
thiserror = { package = "miden-thiserror", version = "1.0", default-features = false }
vm-core = { package = "miden-core", path = "../core", version = "0.10", default-features = false }
vm-core = { package = "miden-core", path = "../core", version = "0.11", default-features = false }
winter-air = { package = "winter-air", version = "0.9", default-features = false }
winter-prover = { package = "winter-prover", version = "0.9", default-features = false }

Expand Down
6 changes: 3 additions & 3 deletions assembly/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-assembly"
version = "0.10.3"
version = "0.11.0"
description = "Miden VM assembly language"
documentation = "https://docs.rs/miden-assembly/0.10.3"
documentation = "https://docs.rs/miden-assembly/0.11.0"
readme = "README.md"
categories = ["compilers", "no-std"]
keywords = ["assembler", "assembly", "language", "miden"]
Expand Down Expand Up @@ -34,7 +34,7 @@ smallvec = { version = "1.13", features = ["union", "const_generics", "const_new
thiserror = { package = "miden-thiserror", version = "1.0", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes"] }
unicode-width = { version = "0.1", features = ["no_std"] }
vm-core = { package = "miden-core", path = "../core", version = "0.10", default-features = false, features = [
vm-core = { package = "miden-core", path = "../core", version = "0.11", default-features = false, features = [
"diagnostics",
] }

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-core"
version = "0.10.3"
version = "0.11.0"
description = "Miden VM core components"
documentation = "https://docs.rs/miden-core/0.10.3"
documentation = "https://docs.rs/miden-core/0.11.0"
readme = "README.md"
categories = ["emulators", "no-std"]
keywords = ["instruction-set", "miden", "program"]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/intro/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Miden VM is a zero-knowledge virtual machine written in Rust. For any program executed on Miden VM, a STARK-based proof of execution is automatically generated. This proof can then be used by anyone to verify that the program was executed correctly without the need for re-executing the program or even knowing the contents of the program.

## Status and features
Miden VM is currently on release v0.10. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward.
Miden VM is currently on release v0.11. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward.

At this point, Miden VM is good enough for experimentation, and even for real-world applications, but it is not yet ready for production use. The codebase has not been audited and contains known and unknown bugs and security flaws.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/intro/usage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Usage

Before you can use Miden VM, you'll need to make sure you have Rust [installed](https://www.rust-lang.org/tools/install). Miden VM v0.10 requires Rust version **1.80** or later.
Before you can use Miden VM, you'll need to make sure you have Rust [installed](https://www.rust-lang.org/tools/install). Miden VM v0.11 requires Rust version **1.80** or later.

Miden VM consists of several crates, each of which exposes a small set of functionality. The most notable of these crates are:

Expand Down
20 changes: 10 additions & 10 deletions miden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-vm"
version = "0.10.3"
version = "0.11.0"
description = "Miden virtual machine"
documentation = "https://docs.rs/miden-vm/0.10.3"
documentation = "https://docs.rs/miden-vm/0.11.0"
readme = "README.md"
categories = ["cryptography", "emulators", "no-std"]
keywords = ["miden", "stark", "virtual-machine", "zkp"]
Expand Down Expand Up @@ -57,17 +57,17 @@ metal = ["prover/metal", "std"]
std = ["assembly/std", "processor/std", "prover/std", "verifier/std"]

[dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.10", default-features = false }
assembly = { package = "miden-assembly", path = "../assembly", version = "0.11", default-features = false }
blake3 = "1.5"
clap = { version = "4.4", features = ["derive"], optional = true }
hex = { version = "0.4", optional = true }
processor = { package = "miden-processor", path = "../processor", version = "0.10", default-features = false }
prover = { package = "miden-prover", path = "../prover", version = "0.10", default-features = false }
processor = { package = "miden-processor", path = "../processor", version = "0.11", default-features = false }
prover = { package = "miden-prover", path = "../prover", version = "0.11", default-features = false }
rustyline = { version = "13.0", default-features = false, optional = true }
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
stdlib = { package = "miden-stdlib", path = "../stdlib", version = "0.10", default-features = false }
stdlib = { package = "miden-stdlib", path = "../stdlib", version = "0.11", default-features = false }
tracing = { version = "0.1", default-features = false, features = [
"attributes",
] }
Expand All @@ -79,8 +79,8 @@ tracing-forest = { version = "0.1", optional = true, features = [
"ansi",
"smallvec",
] }
verifier = { package = "miden-verifier", path = "../verifier", version = "0.10", default-features = false }
vm-core = { package = "miden-core", path = "../core", version = "0.10", default-features = false }
verifier = { package = "miden-verifier", path = "../verifier", version = "0.11", default-features = false }
vm-core = { package = "miden-core", path = "../core", version = "0.11", default-features = false }

[dev-dependencies]
assert_cmd = "2.0"
Expand All @@ -89,6 +89,6 @@ escargot = "0.5"
num-bigint = "0.4"
predicates = "3.0"
test-utils = { package = "miden-test-utils", path = "../test-utils" }
vm-core = { package = "miden-core", path = "../core", version = "0.10" }
winter-fri = { package = "winter-fri", version = "0.8" }
vm-core = { package = "miden-core", path = "../core", version = "0.11" }
winter-fri = { package = "winter-fri", version = "0.9" }
rand_chacha = "0.3.1"
Loading

0 comments on commit 337bf2b

Please sign in to comment.