1.0.0#5
Open
peterrrock2 wants to merge 201 commits into
Open
Conversation
Rework the types so that BenFrames are canonicalized First steps in TwoDelta
Owner
Author
|
/ci-full |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First stable release (1.0.0) of the rewritten binary-ensemble Python API, headlined by the new single-file .bendl bundle format, a custom-asset system with per-asset integrity checks, and a durability/safety hardening pass across the writer and readers.
Why
0.3.0 shipped a usable but pre-stable Python surface with no self-contained container: an ensemble's assignment stream, its dual graph, the node permutation, and any metadata all lived as separate files with no integrity guarantees and no crash safety. 1.0.0 consolidates that into one bundle format, locks in the public API for a stable release, and hardens the write path so a crash or power loss can't leave a half-written or silently corrupt file.
Changes
XBEN) and relabel_bundle (reorder a bundle's graph and rewrite its stream to match), both asset-preserving.
Testing
Verification on this branch: unit tests for both the Rust crate and Python package, an expanded fuzzing suite, a "soak" test, cross-architecture test runs, and a wheel smoke test in CI. The docs site builds clean under -W (warnings-as-errors) with notebooks executed end-to-end against the live API.
Reviewer Notes