Releases: CQCL/tket2
Releases · CQCL/tket2
tket2: v0.8.0
New Features
- [breaking] Use hugr envelopes to store/load circuits (#813)
tket2-py: v0.8.1
tket2-py: v0.8.0
0.8.0 (2025-03-17)
⚠ BREAKING CHANGES
- pre-envelope
Circuit
serialisation functions are deprecated. Node
is now an associated type ofHugrView
Circuit::load_function_reader
takes aBufRead
rather thanRead
- tket2-hseries: Make
UtilsOp
enumnon_exhaustive
so that future additions are not considered API-breaking.
Features
- Add methods to en/decode from bytes (#807) (3e76fd2)
- Use hugr envelopes to store/load circuits (#813) (2940b2e)
Bug Fixes
Miscellaneous Chores
tket2-hseries: v0.11.0
tket2-exts: v0.6.0
0.6.0 (2025-03-18)
⚠ BREAKING CHANGES
- pre-envelope
Circuit
serialisation functions are deprecated. Node
is now an associated type ofHugrView
Circuit::load_function_reader
takes aBufRead
rather thanRead
- tket2-hseries: Make
UtilsOp
enumnon_exhaustive
so that future additions are not considered API-breaking.
Features
Bug Fixes
Miscellaneous Chores
tket2-py: v0.7.0
tket2-hseries: v0.10.0
tket2-exts: v0.5.1
tket2-exts: v0.5.0
0.5.0 (2025-03-04)
⚠ BREAKING CHANGES
- To be compatible with Guppy's convention of implicitly returning
self
as the second value of the tuple, the following signatures are updated:
- /// `fn random_int(RNGContext) -> (RNGContext, u32)`
+ /// `fn random_int(RNGContext) -> (u32, RNGContext)`
- /// `fn random_float(RNGContext) -> (RNGContext, f32)`
+ /// `fn random_float(RNGContext) -> (f32, RNGContext)`
- /// `fn random_int_bounded(RNGContext, bound: u32) -> (RNGContext, u32)`
+ /// `fn random_int_bounded(RNGContext, bound: u32) -> (u32, RNGContext)`
Bug Fixes
tket2: v0.7.3
Bug Fixes
- remove unicode pi symbols in rotation extension (#743)