Skip to content

chore: release - #378

Open
github-actions[bot] wants to merge 1 commit into
masterfrom
release-plz-2026-08-27T08-23-20Z
Open

chore: release#378
github-actions[bot] wants to merge 1 commit into
masterfrom
release-plz-2026-08-27T08-23-20Z

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

🤖 New release

  • gantz_egui: 0.6.1 -> 0.7.0 (⚠ API breaking changes)
  • bevy_gantz_egui: 0.6.0 -> 0.7.0 (⚠ API breaking changes)
  • gantz_plyphon: 0.3.0 -> 0.3.1 (✓ API compatible changes)
  • bevy_gantz_plyphon: 0.2.1 -> 0.2.2 (✓ API compatible changes)
  • bevy_gantz_collab: 0.1.1 -> 0.1.2
  • gantz_pattern: 0.1.0 -> 0.1.1
  • gantz: 0.3.1 -> 0.3.2

gantz_egui breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type GantzState is no longer UnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:101
  type GantzState is no longer RefUnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:101
  type GantzState is no longer UnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:101
  type GantzState is no longer RefUnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:101

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field GantzState.style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:120
  field GantzState.style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/gantz.rs:120
  field SettingsResponse.export_style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:47
  field SettingsResponse.import_style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:49
  field SettingsResponse.export_style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:47
  field SettingsResponse.import_style in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:49

--- failure function_parameter_count_changed: pub fn parameter count changed ---

Description:
A publicly-visible function now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/function_parameter_count_changed.ron

Failed in:
  gantz_egui::widget::settings::settings now takes 10 parameters instead of 9, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:61
  gantz_egui::widget::settings now takes 10 parameters instead of 9, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/settings.rs:61
  gantz_egui::widget::style_config::style_config now takes 3 parameters instead of 2, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/style_config.rs:30
  gantz_egui::widget::style_config now takes 3 parameters instead of 2, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/gantz_egui/src/widget/style_config.rs:30

bevy_gantz_egui breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type GuiState is no longer UnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/bevy_gantz_egui/src/lib.rs:304
  type GuiState is no longer RefUnwindSafe, in /tmp/nix-shell.eWMg8j/.tmpf7iach/gantz/crates/bevy_gantz_egui/src/lib.rs:304
Changelog

gantz_egui

0.7.0 - 2026-09-03

Added

  • (gantz_egui) export/import the style from the demo host
  • (gantz_egui) egui style editor in Settings -> Style
  • (gantz_egui) add StyleConfig and per-context style application

Fixed

  • (gantz_egui) edit the selected theme's style directly
  • (gantz_egui) make egui's "Reset style" button theme-aware

Other

  • (gantz_egui) strong headings without colons in settings
  • (gantz_egui) cover style application against a real context

bevy_gantz_egui

0.7.0 - 2026-09-03

Added

  • (bevy_gantz_egui) handle style export/import

gantz_plyphon

0.3.1 - 2026-09-03

Other

  • (gantz_plyphon) strong headings without colons in DSP settings

bevy_gantz_plyphon

0.2.2 - 2026-09-03

Fixed

  • (bevy_gantz_plyphon) anchor web audio clock to the eval epoch

bevy_gantz_collab

0.1.2 - 2026-09-03

Other

  • updated the following local packages: gantz_egui, bevy_gantz_egui

gantz_pattern

0.1.1 - 2026-09-03

Other

  • updated the following local packages: gantz_egui

gantz

0.3.2 - 2026-09-03

Other

  • updated the following local packages: gantz_egui, bevy_gantz_egui, gantz_plyphon, bevy_gantz_plyphon, bevy_gantz_collab, gantz_pattern


This PR was generated with release-plz.

@github-actions
github-actions Bot force-pushed the release-plz-2026-08-27T08-23-20Z branch from 1ffa883 to 5b5a0a6 Compare August 28, 2026 16:26
@github-actions
github-actions Bot force-pushed the release-plz-2026-08-27T08-23-20Z branch from 5b5a0a6 to 7abda30 Compare September 3, 2026 04:56
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.

0 participants