Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

* [FIX][cli] `miden-client import` now rejects invocations without a file path instead of silently succeeding ([#2450](https://github.com/0xMiden/rust-sdk/pull/2450)).

### Enhancements

* [rust] Re-exported `NetworkNotePricer` from `miden_client`, allowing downstream users to avoid a direct `miden-tx` dependency ([#2517](https://github.com/0xMiden/rust-sdk/issues/2517)).

## 0.16.0 (2026-09-07)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion crates/rust-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ pub use miden_protocol::{
Word,
ZERO,
};
pub use miden_tx::ExecutionOptions;
pub use miden_tx::{ExecutionOptions, NetworkNotePricer};
#[cfg(feature = "tonic")]
pub use remote_prover::RemoteTransactionProver;

Expand Down