Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[release] v0.0.56#1273

Merged
patrick-ogrady merged 1 commit intomainfrom
v0.0.56-release
Jul 14, 2025
Merged

[release] v0.0.56#1273
patrick-ogrady merged 1 commit intomainfrom
v0.0.56-release

Conversation

@patrick-ogrady
Copy link
Contributor

Stats

 .github/workflows/publish.yml                  |    5 +
 .github/workflows/slow.yml                     |    4 +
 Cargo.lock                                     |   85 +-
 Cargo.toml                                     |   28 +-
 README.md                                      |    1 +
 broadcast/Cargo.toml                           |    2 +-
 codec/Cargo.toml                               |    2 +-
 codec/fuzz/Cargo.toml                          |    2 +-
 coding/Cargo.toml                              |   31 +
 coding/README.md                               |   10 +
 coding/src/lib.rs                              |    8 +
 coding/src/reed_solomon/benches/bench.rs       |    6 +
 coding/src/reed_solomon/benches/decode.rs      |   54 +
 coding/src/reed_solomon/benches/encode.rs      |   42 +
 coding/src/reed_solomon/mod.rs                 |  747 ++++++++++++++
 collector/Cargo.toml                           |    2 +-
 consensus/Cargo.toml                           |    2 +-
 consensus/src/aggregation/config.rs            |   74 ++
 consensus/src/aggregation/engine.rs            |  804 +++++++++++++++
 consensus/src/aggregation/metrics.rs           |   69 ++
 consensus/src/aggregation/mocks/application.rs |  110 +++
 consensus/src/aggregation/mocks/mod.rs         |   10 +
 consensus/src/aggregation/mocks/monitor.rs     |   56 ++
 consensus/src/aggregation/mocks/reporter.rs    |  232 +++++
 consensus/src/aggregation/mocks/supervisor.rs  |   97 ++
 consensus/src/aggregation/mod.rs               | 1247 ++++++++++++++++++++++++
 consensus/src/aggregation/safe_tip.rs          |  701 +++++++++++++
 consensus/src/aggregation/types.rs             |  385 ++++++++
 consensus/src/lib.rs                           |    5 +-
 consensus/src/ordered_broadcast/engine.rs      |    2 +-
 cryptography/Cargo.toml                        |    2 +-
 cryptography/fuzz/Cargo.toml                   |    2 +-
 cryptography/src/bls12381/primitives/ops.rs    |   36 +-
 deployer/Cargo.toml                            |    2 +-
 docs/index.html                                |    2 +
 examples/bridge/Cargo.toml                     |    2 +-
 examples/chat/Cargo.toml                       |    2 +-
 examples/flood/Cargo.toml                      |    2 +-
 examples/log/Cargo.toml                        |    2 +-
 examples/sync/Cargo.toml                       |    2 +-
 examples/vrf/Cargo.toml                        |    2 +-
 macros/Cargo.toml                              |    2 +-
 p2p/Cargo.toml                                 |    2 +-
 resolver/Cargo.toml                            |    2 +-
 runtime/Cargo.toml                             |    2 +-
 storage/Cargo.toml                             |    2 +-
 storage/fuzz/Cargo.toml                        |    3 +-
 storage/fuzz/fuzz_targets/bmt_operations.rs    |    5 +-
 storage/src/bmt/mod.rs                         |   76 +-
 storage/src/freezer/mod.rs                     |  153 ++-
 storage/src/freezer/storage.rs                 |  307 +++---
 stream/Cargo.toml                              |    2 +-
 stream/fuzz/Cargo.toml                         |    2 +-
 utils/Cargo.toml                               |    2 +-
 utils/fuzz/Cargo.toml                          |    2 +-
 utils/src/lib.rs                               |   66 ++
 56 files changed, 5244 insertions(+), 263 deletions(-)

@patrick-ogrady patrick-ogrady requested a review from Copilot July 14, 2025 18:10
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR prepares the v0.0.56 release by bumping crate versions across all packages and updating the workspace’s dependency entries.

  • Updated version fields in each crate’s Cargo.toml (including fuzz targets) from 0.0.55 to 0.0.56.
  • Updated [workspace.dependencies] entries in the root Cargo.toml to reference 0.0.56 and added the new commonware-coding crate.

Reviewed Changes

Copilot reviewed 26 out of 27 changed files in this pull request and generated no comments.

Show a summary per file
File Description
utils/fuzz/Cargo.toml Bump crate version to 0.0.56
utils/Cargo.toml Bump crate version to 0.0.56
stream/fuzz/Cargo.toml Bump crate version to 0.0.56
stream/Cargo.toml Bump crate version to 0.0.56
storage/fuzz/Cargo.toml Bump crate version to 0.0.56
storage/Cargo.toml Bump crate version to 0.0.56
runtime/Cargo.toml Bump crate version to 0.0.56
resolver/Cargo.toml Bump crate version to 0.0.56
p2p/Cargo.toml Bump crate version to 0.0.56
macros/Cargo.toml Bump crate version to 0.0.56
examples/vrf/Cargo.toml Bump crate version to 0.0.56
examples/sync/Cargo.toml Bump crate version to 0.0.56
examples/log/Cargo.toml Bump crate version to 0.0.56
examples/flood/Cargo.toml Bump crate version to 0.0.56
examples/chat/Cargo.toml Bump crate version to 0.0.56
examples/bridge/Cargo.toml Bump crate version to 0.0.56
deployer/Cargo.toml Bump crate version to 0.0.56
cryptography/fuzz/Cargo.toml Bump crate version to 0.0.56
cryptography/Cargo.toml Bump crate version to 0.0.56
consensus/Cargo.toml Bump crate version to 0.0.56
collector/Cargo.toml Bump crate version to 0.0.56
coding/Cargo.toml Bump crate version to 0.0.56
codec/fuzz/Cargo.toml Bump crate version to 0.0.56
codec/Cargo.toml Bump crate version to 0.0.56
broadcast/Cargo.toml Bump crate version to 0.0.56
Cargo.toml Updated workspace dependencies

@patrick-ogrady patrick-ogrady merged commit 685aa3d into main Jul 14, 2025
31 checks passed
@patrick-ogrady patrick-ogrady deleted the v0.0.56-release branch July 14, 2025 18:24
@codecov
Copy link

codecov bot commented Jul 14, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 91.06%. Comparing base (b03e24a) to head (6b4c6ca).
Report is 1 commits behind head on main.

@@            Coverage Diff             @@
##             main    #1273      +/-   ##
==========================================
- Coverage   91.06%   91.06%   -0.01%     
==========================================
  Files         246      246              
  Lines       60120    60120              
==========================================
- Hits        54750    54748       -2     
- Misses       5370     5372       +2     

see 1 file with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b03e24a...6b4c6ca. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments