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

Merged
merged 1 commit into from May 9, 2024
Merged

chore: release #21

merged 1 commit into from May 9, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Mar 22, 2024

🤖 New release

  • cw-storey: 0.1.0 -> 0.1.1 (✓ API compatible changes)
  • storey: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)
  • storey-encoding: 0.1.0 -> 0.1.1 (✓ API compatible changes)
  • storey-storage: 0.1.0 -> 0.1.1 (✓ API compatible changes)

⚠️ storey 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.31.0/src/lints/enum_missing.ron

Failed in:
  enum storey::containers::column::LenError, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:191
  enum storey::containers::column::UpdateError, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:171
  enum storey::containers::column::RemoveError, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:185

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn 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.31.0/src/lints/inherent_method_missing.ron

Failed in:
  MapAccess::iter, previously in file /tmp/.tmpSzgZh8/storey/src/containers/map.rs:112

--- 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.31.0/src/lints/module_missing.ron

Failed in:
  mod storey::storage_branch, previously in file /tmp/.tmpSzgZh8/storey/src/storage_branch.rs:1
  mod storey::containers::column, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:1

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

Failed in:
  struct storey::storage_branch::StorageBranch, previously in file /tmp/.tmpSzgZh8/storey/src/storage_branch.rs:3
  struct storey::encoding::Cover, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:208
  struct storey::containers::column::Column, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:14
  struct storey::containers::KeyDecodeError, previously in file /tmp/.tmpSzgZh8/storey/src/containers/mod.rs:26
  struct storey::storage_branch::BranchKVIter, previously in file /tmp/.tmpSzgZh8/storey/src/storage_branch.rs:184
  struct storey::containers::column::ColumnAccess, previously in file /tmp/.tmpSzgZh8/storey/src/containers/column.rs:64
  struct storey::storage_branch::BranchKeysIter, previously in file /tmp/.tmpSzgZh8/storey/src/storage_branch.rs:168

--- 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.31.0/src/lints/trait_missing.ron

Failed in:
  trait storey::Storage, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:63
  trait storey::RevIterableStorage, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:136
  trait storey::encoding::Encoding, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:97
  trait storey::encoding::DecodableWith, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:149
  trait storey::StorageMut, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:76
  trait storey::encoding::EncodableWith, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:112
  trait storey::StorageBackendMut, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:9
  trait storey::encoding::DecodableWithImpl, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:163
  trait storey::StorageBackend, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:1
  trait storey::IterableStorage, previously in file /tmp/.tmpSzgZh8/storey/src/bin_storage.rs:84
  trait storey::encoding::EncodableWithImpl, previously in file /tmp/.tmpSzgZh8/storey/src/encoding.rs:126

--- failure trait_removed_associated_type: trait's associated type was removed ---

Description:
A public trait's associated type was removed or renamed.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.31.0/src/lints/trait_removed_associated_type.ron

Failed in:
  associated type Storable::AccessorT, previously at /tmp/.tmpSzgZh8/storey/src/containers/mod.rs:14
Changelog

cw-storey

[0.1.1] - 2024-05-09

Added

  • use single-byte keys for top-level containers

Other

  • rename crates to packages

storey

[0.2.0] - 2024-05-09

Added

  • (storey) return ix on Column::push
  • provide typed bounds for iteration
  • use single-byte keys for top-level containers

Fixed

  • (storey) Column::push bounds checking

Other

  • less awkward associated type names
  • rename crates to packages

storey-encoding

[0.1.1] - 2024-05-09

Other

  • rename crates to packages

storey-storage

[0.1.1] - 2024-05-09

Other

  • rename crates to packages


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch from e4b0298 to d33e028 Compare March 22, 2024 11:14
Cargo.toml Outdated Show resolved Hide resolved
@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch 2 times, most recently from b85d34e to 44b3bfd Compare March 27, 2024 20:04
@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch 3 times, most recently from 79e8109 to ed8af9a Compare April 15, 2024 14:06
@uint uint self-requested a review April 15, 2024 16:32
@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch 2 times, most recently from 8070a93 to a7cbf91 Compare April 16, 2024 17:25
@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch 7 times, most recently from ce4c34c to 2595368 Compare May 7, 2024 08:20
@github-actions github-actions bot force-pushed the release-plz-2024-03-22T11-07-21Z branch 4 times, most recently from 5e87754 to deb9d69 Compare May 9, 2024 08:39
@uint uint force-pushed the release-plz-2024-03-22T11-07-21Z branch 2 times, most recently from 9ed2ea0 to ebc77a8 Compare May 9, 2024 08:43
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@uint uint merged commit 706b522 into main May 9, 2024
2 checks passed
@uint uint deleted the release-plz-2024-03-22T11-07-21Z branch May 9, 2024 08:45
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.

None yet

1 participant