chore: release v0.6.0 #311

Merged
jwilger merged 1 commit from release-plz-2026-03-15T20-13-10Z into main 2026-03-15 14:16:56 -07:00
jwilger commented 2026-03-15 13:13:11 -07:00 (Migrated from github.com)

🤖 New release

  • eventcore-macros: 0.5.1 -> 0.6.0
  • eventcore-types: 0.5.1 -> 0.6.0 (⚠ API breaking changes)
  • eventcore-postgres: 0.5.1 -> 0.6.0 (✓ API compatible changes)
  • eventcore-sqlite: 0.5.1 -> 0.6.0
  • eventcore: 0.5.1 -> 0.6.0 (✓ API compatible changes)
  • eventcore-memory: 0.5.1 -> 0.6.0 (✓ API compatible changes)
  • eventcore-testing: 0.5.1 -> 0.6.0 (✓ API compatible changes)
  • eventcore-examples: 0.5.1 -> 0.6.0

eventcore-types 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.47.0/src/lints/enum_unit_variant_changed_kind.ron

Failed in:
  variant CommandError::ValidationError in /tmp/.tmpSVGHJp/eventcore/eventcore-types/src/errors.rs:42

--- failure trait_added_supertrait: non-sealed trait added new supertraits ---

Description:
A non-sealed trait added one or more supertraits, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#generic-bounds-tighten
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/trait_added_supertrait.ron

Failed in:
  trait eventcore_types::Projector gained Send in file /tmp/.tmpSVGHJp/eventcore/eventcore-types/src/projection.rs:152
Changelog

eventcore-macros

0.3.0 - 2025-12-27

Refactoring

  • (release) switch to workspace version inheritance for full lockstep versioning (#221)

eventcore-types

0.6.0 - 2026-03-15

Bug Fixes

  • add projection error logging and propagate checkpoint failures (#313)
  • improve type encapsulation, error context, and clean up stale TODOs (#315)

eventcore-postgres

0.6.0 - 2026-03-15

Miscellaneous Tasks

  • remove claude-code-review CI workflow (#316)

eventcore-sqlite

0.6.0 - 2026-03-15

Bug Fixes

  • improve type encapsulation, error context, and clean up stale TODOs (#315)

Features

  • add eventcore-sqlite crate with SQLCipher encryption support (#310)

eventcore

0.6.0 - 2026-03-15

Bug Fixes

  • add projection error logging and propagate checkpoint failures (#313)
  • improve type encapsulation, error context, and clean up stale TODOs (#315)

Features

  • add eventcore-sqlite crate with SQLCipher encryption support (#310)

eventcore-memory

0.6.0 - 2026-03-15

Bug Fixes

  • improve type encapsulation, error context, and clean up stale TODOs (#315)

Miscellaneous Tasks

  • remove claude-code-review CI workflow (#316)

eventcore-testing

0.6.0 - 2026-03-15

Bug Fixes

  • add projection error logging and propagate checkpoint failures (#313)

eventcore-examples

0.5.1 - 2026-02-22

Features

  • add eventcore-examples crate (#285)
  • migrate integration tests to eventcore-examples and add deterministic store (#295)

Miscellaneous Tasks

  • release v0.1.3 (#59)

Deps

  • (deps) bump the minor-and-patch group with 14 updates


This PR was generated with release-plz.

## 🤖 New release * `eventcore-macros`: 0.5.1 -> 0.6.0 * `eventcore-types`: 0.5.1 -> 0.6.0 (⚠ API breaking changes) * `eventcore-postgres`: 0.5.1 -> 0.6.0 (✓ API compatible changes) * `eventcore-sqlite`: 0.5.1 -> 0.6.0 * `eventcore`: 0.5.1 -> 0.6.0 (✓ API compatible changes) * `eventcore-memory`: 0.5.1 -> 0.6.0 (✓ API compatible changes) * `eventcore-testing`: 0.5.1 -> 0.6.0 (✓ API compatible changes) * `eventcore-examples`: 0.5.1 -> 0.6.0 ### ⚠ `eventcore-types` breaking changes ```text --- 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.47.0/src/lints/enum_unit_variant_changed_kind.ron Failed in: variant CommandError::ValidationError in /tmp/.tmpSVGHJp/eventcore/eventcore-types/src/errors.rs:42 --- failure trait_added_supertrait: non-sealed trait added new supertraits --- Description: A non-sealed trait added one or more supertraits, which breaks downstream implementations of the trait ref: https://doc.rust-lang.org/cargo/reference/semver.html#generic-bounds-tighten impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/trait_added_supertrait.ron Failed in: trait eventcore_types::Projector gained Send in file /tmp/.tmpSVGHJp/eventcore/eventcore-types/src/projection.rs:152 ``` <details><summary><i><b>Changelog</b></i></summary><p> ## `eventcore-macros` <blockquote> ## [0.3.0](https://github.com/jwilger/eventcore/compare/eventcore-macros-v0.2.0...eventcore-macros-v0.3.0) - 2025-12-27 ### Refactoring - *(release)* switch to workspace version inheritance for full lockstep versioning ([#221](https://github.com/jwilger/eventcore/pull/221)) </blockquote> ## `eventcore-types` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-types-v0.5.1...eventcore-types-v0.6.0) - 2026-03-15 ### Bug Fixes - add projection error logging and propagate checkpoint failures ([#313](https://github.com/jwilger/eventcore/pull/313)) - improve type encapsulation, error context, and clean up stale TODOs ([#315](https://github.com/jwilger/eventcore/pull/315)) </blockquote> ## `eventcore-postgres` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-postgres-v0.5.1...eventcore-postgres-v0.6.0) - 2026-03-15 ### Miscellaneous Tasks - remove claude-code-review CI workflow ([#316](https://github.com/jwilger/eventcore/pull/316)) </blockquote> ## `eventcore-sqlite` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-sqlite-v0.5.1...eventcore-sqlite-v0.6.0) - 2026-03-15 ### Bug Fixes - improve type encapsulation, error context, and clean up stale TODOs ([#315](https://github.com/jwilger/eventcore/pull/315)) ### Features - add eventcore-sqlite crate with SQLCipher encryption support ([#310](https://github.com/jwilger/eventcore/pull/310)) </blockquote> ## `eventcore` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-v0.5.1...eventcore-v0.6.0) - 2026-03-15 ### Bug Fixes - add projection error logging and propagate checkpoint failures ([#313](https://github.com/jwilger/eventcore/pull/313)) - improve type encapsulation, error context, and clean up stale TODOs ([#315](https://github.com/jwilger/eventcore/pull/315)) ### Features - add eventcore-sqlite crate with SQLCipher encryption support ([#310](https://github.com/jwilger/eventcore/pull/310)) </blockquote> ## `eventcore-memory` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-memory-v0.5.1...eventcore-memory-v0.6.0) - 2026-03-15 ### Bug Fixes - improve type encapsulation, error context, and clean up stale TODOs ([#315](https://github.com/jwilger/eventcore/pull/315)) ### Miscellaneous Tasks - remove claude-code-review CI workflow ([#316](https://github.com/jwilger/eventcore/pull/316)) </blockquote> ## `eventcore-testing` <blockquote> ## [0.6.0](https://github.com/jwilger/eventcore/compare/eventcore-testing-v0.5.1...eventcore-testing-v0.6.0) - 2026-03-15 ### Bug Fixes - add projection error logging and propagate checkpoint failures ([#313](https://github.com/jwilger/eventcore/pull/313)) </blockquote> ## `eventcore-examples` <blockquote> ## [0.5.1](https://github.com/jwilger/eventcore/compare/eventcore-examples-v0.5.0...eventcore-examples-v0.5.1) - 2026-02-22 ### Features - add eventcore-examples crate ([#285](https://github.com/jwilger/eventcore/pull/285)) - migrate integration tests to eventcore-examples and add deterministic store ([#295](https://github.com/jwilger/eventcore/pull/295)) ### Miscellaneous Tasks - release v0.1.3 ([#59](https://github.com/jwilger/eventcore/pull/59)) ### Deps - *(deps)* bump the minor-and-patch group with 14 updates </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
Sign in to join this conversation.
No description provided.