Skip to content

chore: release v0.2.0 - #36

Merged
robpatterson13 merged 1 commit into
mainfrom
release-plz-2026-07-03T01-14-01Z
Jul 29, 2026
Merged

chore: release v0.2.0#36
robpatterson13 merged 1 commit into
mainfrom
release-plz-2026-07-03T01-14-01Z

Conversation

@github-actions

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

Copy link
Copy Markdown
Contributor

🤖 New release

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

vihaco breaking changes

--- 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 ParsedModule.header in /tmp/.tmppZ6QHQ/vihaco/crates/vihaco/src/syntax/types.rs:28

--- 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.48.0/src/lints/enum_missing.ron

Failed in:
  enum vihaco::syntax::BodyItem, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/types.rs:40
  enum vihaco::syntax::RawOperand, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/types.rs:59

--- 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::syntax::parse::body_item, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/parse.rs:180
  function vihaco::syntax::parse::raw_type, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/parse.rs:111
  function vihaco::syntax::parse::raw_form, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/parse.rs:95
  function vihaco::syntax::parse::raw_operand, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/parse.rs:55

--- 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::loader::ProgramLoader, previously in file /tmp/.tmpFASdKo/vihaco/src/loader.rs:11
  struct vihaco::ProgramLoader, previously in file /tmp/.tmpFASdKo/vihaco/src/loader.rs:11
  struct vihaco::module::Module, previously in file /tmp/.tmpFASdKo/vihaco/src/module.rs:7
  struct vihaco::syntax::RawType, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/types.rs:36
  struct vihaco::syntax::RawForm, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/types.rs:53

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field 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.48.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field headers of struct ParsedModule, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/types.rs:10

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-item-signature
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/trait_method_missing.ron

Failed in:
  method resolve_body of trait Resolve, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/resolve.rs:27
  method resolve_body of trait Resolve, previously in file /tmp/.tmpFASdKo/vihaco/src/syntax/resolve.rs:27

--- 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::machine::GetProgramGlobal, previously in file /tmp/.tmpFASdKo/vihaco/src/traits/machine.rs:90

vihaco-cpu 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.48.0/src/lints/enum_missing.ron

Failed in:
  enum vihaco_cpu::Instruction, previously in file /tmp/.tmpFASdKo/vihaco-cpu/src/instruction.rs:25
Changelog

vihaco-derive

0.2.0 - 2026-07-29

Other

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

vihaco-parser-core

0.2.0 - 2026-07-29

Other

  • Parser refactor to support values, types, instructions (#40)
  • Refactor multi-section implementation (#37)

vihaco-parser

0.2.0 - 2026-07-29

Other

  • Parser refactor to support values, types, instructions (#40)

vihaco

0.2.0 - 2026-07-29

Other

  • Parser refactor to support values, types, instructions (#40)
  • Refactor multi-section implementation (#37)
  • Multi-section bytecode support (#31)

vihaco-cpu

0.2.0 - 2026-07-29

Other

  • Parser refactor to support values, types, instructions (#40)
  • Refactor multi-section implementation (#37)
  • Multi-section bytecode support (#31)


This PR was generated with release-plz.

@github-actions

github-actions Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor Author
PR Preview Action v1.8.1
Preview removed because the pull request was closed.
2026-07-29 19:42 UTC

@kaihsin

kaihsin commented Jul 13, 2026

Copy link
Copy Markdown
Collaborator

@robpatterson13 after you merge the #37 can you fix this? thx

@github-actions
github-actions Bot force-pushed the release-plz-2026-07-03T01-14-01Z branch 2 times, most recently from 6260478 to 408897b Compare July 23, 2026 14:15
@github-actions
github-actions Bot force-pushed the release-plz-2026-07-03T01-14-01Z branch 2 times, most recently from 29321c5 to 789b8fb Compare July 29, 2026 15:33
@github-actions
github-actions Bot force-pushed the release-plz-2026-07-03T01-14-01Z branch from 789b8fb to 3e66c53 Compare July 29, 2026 15:34
@robpatterson13
robpatterson13 self-requested a review July 29, 2026 19:41
@robpatterson13
robpatterson13 merged commit 2c62663 into main Jul 29, 2026
11 checks passed
@robpatterson13
robpatterson13 deleted the release-plz-2026-07-03T01-14-01Z branch July 29, 2026 19:42
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.

2 participants