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 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

github-actions[bot]
Copy link

@github-actions github-actions bot commented Dec 3, 2024

🤖 New release

  • kona-derive: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • kona-driver: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • kona-executor: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • kona-mpt: 0.1.0 -> 0.1.1 (✓ API compatible changes)
  • kona-preimage: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • kona-proof: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • kona-std-fpvm: 0.1.0 -> 0.1.1

⚠️ kona-derive 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.36.0/src/lints/struct_missing.ron

Failed in:
  struct kona_derive::sources::IndexedBlobHash, previously in file /tmp/.tmpk1dVMN/kona-derive/src/sources/blob_hash.rs:8
  struct kona_derive::prelude::IndexedBlobHash, previously in file /tmp/.tmpk1dVMN/kona-derive/src/sources/blob_hash.rs:8

⚠️ kona-driver breaking changes

--- failure trait_method_added: pub trait method added ---

Description:
A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_added.ron

Failed in:
  trait method kona_driver::Executor::wait_until_ready in file /tmp/.tmpW3lfA3/kona/crates/driver/src/executor.rs:24
  trait method kona_driver::Executor::update_safe_head in file /tmp/.tmpW3lfA3/kona/crates/driver/src/executor.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.36.0/src/lints/trait_missing.ron

Failed in:
  trait kona_driver::ExecutorConstructor, previously in file /tmp/.tmpk1dVMN/kona-driver/src/executor.rs:33

⚠️ kona-executor breaking changes

--- 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.36.0/src/lints/enum_variant_added.ron

Failed in:
  variant ExecutorError:MissingExecutor in /tmp/.tmpW3lfA3/kona/crates/executor/src/errors.rs:48

⚠️ kona-preimage 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.36.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type BidirectionalChannel is no longer Unpin, in /tmp/.tmpW3lfA3/kona/crates/proof-sdk/preimage/src/native_channel.rs:14
  type NativeChannel is no longer Unpin, in /tmp/.tmpW3lfA3/kona/crates/proof-sdk/preimage/src/native_channel.rs:36

⚠️ kona-proof breaking changes

--- 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.36.0/src/lints/enum_variant_added.ron

Failed in:
  variant HintType:L2PayloadWitness in /tmp/.tmpW3lfA3/kona/crates/proof-sdk/proof/src/hint.rs:74

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method 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.36.0/src/lints/method_parameter_count_changed.ron

Failed in:
  kona_proof::executor::KonaExecutor::new now takes 5 parameters instead of 1, in /tmp/.tmpW3lfA3/kona/crates/proof-sdk/proof/src/executor.rs:38

--- 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.36.0/src/lints/struct_missing.ron

Failed in:
  struct kona_proof::executor::KonaExecutorConstructor, previously in file /tmp/.tmpk1dVMN/kona-proof/src/executor.rs:50
Changelog

kona-derive

0.2.0 - 2024-12-03

Added

  • (workspace) Isolate FPVM-specific platform code (#821)

Fixed

Other

  • (derive) remove indexed blob hash (#847)

kona-driver

0.2.0 - 2024-12-03

Added

  • (driver) wait for engine (#851)
  • (driver) refines the executor interface for the driver (#850)

Other

  • (driver) advance with optional target (#848)
  • (driver) visibility (#834)

kona-executor

0.2.0 - 2024-12-03

Added

  • (driver) refines the executor interface for the driver (#850)

Fixed

  • bump (#855)
  • use non problematic hashmap fns (#853)

kona-mpt

0.1.1 - 2024-12-03

Other

  • update Cargo.toml dependencies

kona-preimage

0.2.0 - 2024-12-03

Added

  • (workspace) Isolate FPVM-specific platform code (#821)

kona-proof

0.2.0 - 2024-12-03

Added

  • (driver) wait for engine (#851)
  • (client) Invalidate impossibly old claims (#852)
  • (driver) refines the executor interface for the driver (#850)
  • (workspace) Isolate FPVM-specific platform code (#821)

Other

  • (host) Hint Parsing Cleanup (#844)
  • (derive) remove indexed blob hash (#847)
  • L2ExecutePayloadProof Hint Type (#832)

kona-std-fpvm

0.1.1 - 2024-12-03

Other

  • updated the following local packages: kona-preimage


This PR was generated with release-plz.

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