Skip to content

chore: release v0.3.0 - #49

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
release-plz-2026-07-30T18-21-59Z
Open

chore: release v0.3.0#49
github-actions[bot] wants to merge 1 commit into
mainfrom
release-plz-2026-07-30T18-21-59Z

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

🤖 New release

  • vihaco-derive: 0.2.0 -> 0.3.0
  • vihaco-parser-core: 0.2.0 -> 0.3.0 (✓ API compatible changes)
  • vihaco-parser: 0.2.0 -> 0.3.0
  • vihaco: 0.2.0 -> 0.3.0 (⚠ API breaking changes)
  • vihaco-cpu: 0.2.0 -> 0.3.0 (⚠ API breaking changes)

vihaco breaking changes

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct 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.48.0/src/lints/struct_missing.ron

Failed in:
  struct vihaco::syntax::SurfaceValue, previously in file /tmp/.tmpe03XGJ/vihaco/src/syntax/types.rs:10
  struct vihaco::syntax::SurfaceType, previously in file /tmp/.tmpe03XGJ/vihaco/src/syntax/types.rs:17

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait 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.48.0/src/lints/trait_missing.ron

Failed in:
  trait vihaco::syntax::SurfaceInstruction, previously in file /tmp/.tmpe03XGJ/vihaco/src/syntax/types.rs:6

--- failure trait_requires_more_generic_type_params: trait now requires more generic type parameters ---

Description:
A trait now requires more generic type parameters than it used to. Uses of this trait that supplied the previously-required number of generic types will be broken. To fix this, consider supplying default values for newly-added generic types.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-parameter-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/trait_requires_more_generic_type_params.ron

Failed in:
  trait ParsedModule (2 -> 3 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:13
  trait ParsedFunction (1 -> 2 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:22
  trait Param (0 -> 1 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:37

--- failure type_requires_more_generic_type_params: type now requires more generic type parameters ---

Description:
A type now requires more generic type parameters than it used to. Uses of this type that supplied the previously-required number of generic types will be broken. To fix this, consider supplying default values for newly-added generic types.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-parameter-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/type_requires_more_generic_type_params.ron

Failed in:
  Struct ParsedModule (2 -> 3 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:13
  Struct ParsedFunction (1 -> 2 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:22
  Struct Param (0 -> 1 required generic types) in /tmp/.tmpaj1dpg/vihaco/crates/vihaco/src/syntax/types.rs:37

vihaco-cpu breaking changes

--- failure enum_unit_variant_changed_kind: An enum unit variant changed kind ---

Description:
A public enum's exhaustive unit variant has changed to a different kind of enum variant, breaking possible instantiations and patterns.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/enum_unit_variant_changed_kind.ron

Failed in:
  variant SurfaceInstruction::Label in /tmp/.tmpaj1dpg/vihaco/crates/vihaco-cpu/src/instruction.rs:157

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function 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.48.0/src/lints/function_missing.ron

Failed in:
  function vihaco_cpu::parse_helpers::never_u32, previously in file /tmp/.tmpe03XGJ/vihaco-cpu/src/parse_helpers.rs:64
  function vihaco_cpu::parse_helpers::cpu_type, previously in file /tmp/.tmpe03XGJ/vihaco-cpu/src/parse_helpers.rs:20
  function vihaco_cpu::parse_helpers::cpu_const_value, previously in file /tmp/.tmpe03XGJ/vihaco-cpu/src/parse_helpers.rs:35

--- failure module_missing: pub module removed or renamed ---

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

Failed in:
  mod vihaco_cpu::parse_helpers, previously in file /tmp/.tmpe03XGJ/vihaco-cpu/src/parse_helpers.rs:4
Changelog

vihaco-derive

0.2.0 - 2026-07-29

Other

  • Refactor multi-section implementation (#37)
  • Multi-section bytecode support (#31)

vihaco-parser-core

0.3.0 - 2026-07-31

Other

  • Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic SurfaceInstruction impl (#48)

vihaco-parser

0.3.0 - 2026-07-31

Other

  • Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic SurfaceInstruction impl (#48)

vihaco

0.3.0 - 2026-07-31

Other

  • Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic SurfaceInstruction impl (#48)

vihaco-cpu

0.3.0 - 2026-07-31

Other

  • Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic SurfaceInstruction impl (#48)


This PR was generated with release-plz.

@github-actions
github-actions Bot force-pushed the release-plz-2026-07-30T18-21-59Z branch from ada9b8b to a9af17f Compare July 31, 2026 00:23
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