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

Migrate to new padding rule #1343

Merged
merged 22 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
44a031e
chore: fix no-std errors
Al-Kindi-0 Mar 22, 2024
fa5bd2e
merge next
Al-Kindi-0 Mar 28, 2024
48116ad
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 Apr 29, 2024
b2b2de5
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 May 1, 2024
e2ce938
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 May 10, 2024
0bbb515
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 May 24, 2024
828e655
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 Sep 11, 2024
880d95a
Merge branch 'next' of https://github.com/0xPolygonMiden/miden-vm int…
Al-Kindi-0 Sep 27, 2024
ef19206
feat: migrate to new padding rule
Al-Kindi-0 May 28, 2024
d636b26
fix: clippy
Al-Kindi-0 May 28, 2024
1307830
fix: update namings and optimize masm code
Al-Kindi-0 May 29, 2024
551218a
chore: minor nits and comment updates
Al-Kindi-0 Jun 5, 2024
e01e822
chore: change file name
Al-Kindi-0 Jun 5, 2024
18ea698
fix: after rebase
Al-Kindi-0 Sep 30, 2024
d528436
fix: changelog
Al-Kindi-0 Sep 30, 2024
b9c2c58
fix: changelog
Al-Kindi-0 Sep 30, 2024
8316863
feat: implement new `hash_memory` proc (#1519)
Fumuran Oct 15, 2024
d595f04
Merge branch 'next' into al-migrate-new-padding-rule
Fumuran Oct 18, 2024
816e28c
chore: migrate miden-vm to use miden-crypto v0.11.0
Fumuran Oct 18, 2024
2333ec3
refactor: remove commented dependency
Fumuran Oct 18, 2024
516e2e6
Merge branch 'next' into al-migrate-new-padding-rule
Fumuran Oct 22, 2024
0b10225
Merge branch 'next' into al-migrate-new-padding-rule
Fumuran Oct 23, 2024
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
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
- Debug instructions can be enabled in the cli `run` command using `--debug` flag (#1502)
- [BREAKING] ExecutionOptions::new constructor requires a boolean to explicitly set debug mode (#1502)
- [BREAKING] The `run` and the `prove` commands in the cli will accept `--trace` flag instead of `--tracing` (#1502)

- Migrated to new padding rule for RPO (#1343).
- Migrated to `miden-crypto` v0.11.0 (#1343).

#### Fixes

Expand All @@ -26,13 +27,9 @@
- Fixed a bug in the block stack table (#1511) (#1512)
- Fixed the construction of the chiplets virtual table (#1514)
- Fixed the construction of the chiplets bus (#1516) (#1525)

#### Fixes

- Decorators are now allowed in empty basic blocks (#1466)


## 0.10.6 (2024-09-12) - `miden-processor` crate only.
## 0.10.6 (2024-09-12) - `miden-processor` crate only

#### Enhancements

Expand Down Expand Up @@ -159,6 +156,8 @@
#### Stdlib

- Added `init_no_padding` procedure to `std::crypto::hashes::native` (#1313).
- [BREAKING] `native` module was renamed to the `rpo`, `hash_memory` procedure was renamed to the `hash_memory_words` (#1368).
- Added `hash_memory` procedure to `std::crypto::hashes::rpo` (#1368).

#### VM Internals

Expand Down
Loading
Loading