Skip to content

Commit

Permalink
chore: increment crate versions to v0.10.2 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Aug 11, 2024
1 parent a14c94f commit d1679d6
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 48 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Changelog

## Unreleased

#### Changes

- [BREAKING] Removed serialization of AST structs (#1442).
## 0.10.1 (2024-08-10)

#### Enhancements

- Removed linear search of trace rows from `BlockHashTableRow::table_init()` (#1439).
- Exposed some pretty printing internals for `MastNode` (#1441).
- Made `KernelLibrary` impl `Clone` and `AsRef<Library>` (#1441).
- Added serialization to the `Program` struct (#1442).

#### Changes

- [BREAKING] Removed serialization of AST structs (#1442).

## 0.10.0 (2024-08-06)

Expand Down Expand Up @@ -47,7 +47,6 @@
- Added `make test-fast` and `make test-skip-proptests` Makefile targets for faster testing during local development.
- Added `ProgramFile::read_with` constructor that takes a `SourceManager` impl to use for source management.
- Added `RowIndex(u32)` (#1408).
- Removed linear search of trace rows from `BlockHashTableRow::table_init()` (#1439).

#### Changed

Expand Down
53 changes: 27 additions & 26 deletions Cargo.lock

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

4 changes: 2 additions & 2 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.0"
version = "0.10.2"
description = "Algebraic intermediate representation of Miden VM processor"
documentation = "https://docs.rs/miden-air/0.10.0"
documentation = "https://docs.rs/miden-air/0.10.2"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["air", "arithmetization", "crypto", "miden"]
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.10.2"
description = "Miden VM assembly language"
documentation = "https://docs.rs/miden-assembly/0.10.0"
documentation = "https://docs.rs/miden-assembly/0.10.2"
readme = "README.md"
categories = ["compilers", "no-std"]
keywords = ["assembler", "assembly", "language", "miden"]
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.1"
version = "0.10.2"
description = "Miden VM core components"
documentation = "https://docs.rs/miden-core/0.10.0"
documentation = "https://docs.rs/miden-core/0.10.2"
readme = "README.md"
categories = ["emulators", "no-std"]
keywords = ["instruction-set", "miden", "program"]
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.10.2"
description = "Miden virtual machine"
documentation = "https://docs.rs/miden-vm/0.10.0"
documentation = "https://docs.rs/miden-vm/0.10.2"
readme = "README.md"
categories = ["cryptography", "emulators", "no-std"]
keywords = ["miden", "stark", "virtual-machine", "zkp"]
Expand Down
4 changes: 2 additions & 2 deletions processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-processor"
version = "0.10.0"
version = "0.10.2"
description = "Miden VM processor"
documentation = "https://docs.rs/miden-processor/0.10.0"
documentation = "https://docs.rs/miden-processor/0.10.2"
readme = "README.md"
categories = ["emulators", "no-std"]
keywords = ["miden", "virtual-machine"]
Expand Down
4 changes: 2 additions & 2 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-prover"
version = "0.10.0"
version = "0.10.2"
description = "Miden VM prover"
documentation = "https://docs.rs/miden-prover/0.10.0"
documentation = "https://docs.rs/miden-prover/0.10.2"
readme = "README.md"
categories = ["cryptography", "emulators", "no-std"]
keywords = ["miden", "prover", "stark", "zkp"]
Expand Down
4 changes: 2 additions & 2 deletions stdlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-stdlib"
version = "0.10.0"
version = "0.10.2"
description = "Miden VM standard library"
documentation = "https://docs.rs/miden-stdlib/0.10.0"
documentation = "https://docs.rs/miden-stdlib/0.10.2"
readme = "README.md"
categories = ["cryptography", "mathematics"]
keywords = ["miden", "program", "stdlib"]
Expand Down
4 changes: 2 additions & 2 deletions verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "miden-verifier"
version = "0.10.0"
version = "0.10.2"
description="Miden VM execution verifier"
documentation = "https://docs.rs/miden-verifier/0.10.0"
documentation = "https://docs.rs/miden-verifier/0.10.2"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["miden", "stark", "verifier", "zkp"]
Expand Down

0 comments on commit d1679d6

Please sign in to comment.