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

chore: release #2051

Merged
merged 2 commits into from
Apr 2, 2025
Merged

chore: release #2051

merged 2 commits into from
Apr 2, 2025

Conversation

hugrbot
Copy link
Collaborator

@hugrbot hugrbot commented Apr 1, 2025

🤖 New release

  • hugr-model: 0.18.1 -> 0.19.0 (⚠ API breaking changes)
  • hugr-core: 0.15.2 -> 0.15.3 (⚠ API breaking changes)
  • hugr-llvm: 0.15.2 -> 0.15.3 (✓ API compatible changes)
  • hugr-passes: 0.15.2 -> 0.15.3 (✓ API compatible changes)
  • hugr: 0.15.2 -> 0.15.3 (✓ API compatible changes)
  • hugr-cli: 0.15.2 -> 0.15.3 (✓ API compatible changes)

hugr-model breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/enum_missing.ron

Failed in:
  enum hugr_model::v0::table::ExtSetPart, previously in file /tmp/.tmpDqJ3X7/hugr-model/src/v0/table/mod.rs:352

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/enum_variant_added.ron

Failed in:
  variant Term:Func in /tmp/.tmpIpZPlW/hugr/hugr-model/src/v0/table/mod.rs:341

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/enum_variant_missing.ron

Failed in:
  variant Term::ExtSet, previously in file /tmp/.tmpDqJ3X7/hugr-model/src/v0/table/mod.rs:316
  variant Term::ConstFunc, previously in file /tmp/.tmpDqJ3X7/hugr-model/src/v0/table/mod.rs:321
  variant Term::ExtSet, previously in file /tmp/.tmpDqJ3X7/hugr-model/src/v0/ast/mod.rs:237

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing or renamed
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  CORE_EXT_SET in file /tmp/.tmpDqJ3X7/hugr-model/src/v0/mod.rs:177

hugr-core breaking changes (⚠️ ignored ⚠️ )

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/enum_variant_added.ron

Failed in:
  variant ImportError:OrderHint in /tmp/.tmpIpZPlW/hugr/hugr-core/src/import.rs:73
Changelog

hugr-model

0.19.0 - 2025-04-02

New Features

  • Python bindings for hugr-model. (#1959)
  • Remove extension sets from hugr-model. (#2031)
  • Packages in hugr-model and envelope support. (#2026)
  • Represent order edges in hugr-model as metadata. (#2027)

hugr-core

0.16.0 - 2025-04-02

Documentation

  • Provide docs for array ops, fix bad doc for HugrView::poly_func_type (#2021)

New Features

  • Expand SimpleReplacement API (#1920)
  • Python bindings for hugr-model. (#1959)
  • ReplaceTypes pass allows replacing extension types and ops (#1989)
  • Remove extension sets from hugr-model. (#2031)
  • Packages in hugr-model and envelope support. (#2026)
  • Represent order edges in hugr-model as metadata. (#2027)
  • add build_expect_sum to allow specific error messages (#2032)

hugr-llvm

0.16.0 - 2025-04-02

New Features

  • (hugr-llvm) Add llvm codegen for arithmetic.float.fpow (#2042)
  • (hugr-llvm) Emit divmod and mod operations (#2025)

hugr-passes

0.16.0 - 2025-04-02

New Features

  • ReplaceTypes pass allows replacing extension types and ops (#1989)
  • MakeTuple->UnpackTuple elision pass (#2012)
  • [breaking] Extend LowerTypes pass to linearize by inserting copy/discard (#2018)

hugr

0.16.0 - 2025-04-02

Documentation

  • Provide docs for array ops, fix bad doc for HugrView::poly_func_type (#2021)

New Features

  • MakeTuple->UnpackTuple elision pass (#2012)
  • [breaking] Extend LowerTypes pass to linearize by inserting copy/discard (#2018)
  • Expand SimpleReplacement API (#1920)
  • Python bindings for hugr-model. (#1959)
  • ReplaceTypes pass allows replacing extension types and ops (#1989)
  • Remove extension sets from hugr-model. (#2031)
  • Represent order edges in hugr-model as metadata. (#2027)
  • add build_expect_sum to allow specific error messages (#2032)
  • Packages in hugr-model and envelope support. (#2026)

hugr-cli

0.16.0 - 2025-04-02

Documentation

  • Add usage info to hugr-cli's rustdocs (#2044)


This PR was generated with release-plz.

@hugrbot hugrbot added the release Release PR label Apr 1, 2025
Copy link

codecov bot commented Apr 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.14%. Comparing base (c7cfd92) to head (00b56de).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2051   +/-   ##
=======================================
  Coverage   83.14%   83.14%           
=======================================
  Files         217      217           
  Lines       42149    42149           
  Branches    38327    38327           
=======================================
  Hits        35043    35043           
  Misses       5138     5138           
  Partials     1968     1968           
Flag Coverage Δ
python 85.40% <ø> (ø)
rust 82.91% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

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

@hugrbot hugrbot force-pushed the release-plz-2025-04-01T10-12-23Z branch 5 times, most recently from fdb0987 to 8914a91 Compare April 2, 2025 14:36
@aborgna-q
Copy link
Collaborator

Overriding the breaking release here, making it non-breaking instead.

@hugrbot hugrbot force-pushed the release-plz-2025-04-01T10-12-23Z branch from 8914a91 to 6cc4f8f Compare April 2, 2025 15:28
@aborgna-q aborgna-q self-assigned this Apr 2, 2025
@aborgna-q aborgna-q force-pushed the release-plz-2025-04-01T10-12-23Z branch 3 times, most recently from 808881f to 6af269f Compare April 2, 2025 15:48
@aborgna-q aborgna-q force-pushed the release-plz-2025-04-01T10-12-23Z branch from 6af269f to 00b56de Compare April 2, 2025 15:53
@aborgna-q aborgna-q marked this pull request as ready for review April 2, 2025 16:00
@aborgna-q aborgna-q requested review from aborgna-q, cqc-alec, ss2165, doug-q and a team as code owners April 2, 2025 16:00
@aborgna-q aborgna-q added this pull request to the merge queue Apr 2, 2025
Merged via the queue into main with commit 3c1d25b Apr 2, 2025
26 checks passed
@aborgna-q aborgna-q deleted the release-plz-2025-04-01T10-12-23Z branch April 2, 2025 16:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release Release PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants