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

Merged
merged 1 commit into from
Feb 5, 2024
Merged

chore: release #63

merged 1 commit into from
Feb 5, 2024

Conversation

fasterthanlime
Copy link
Collaborator

@fasterthanlime fasterthanlime commented Feb 5, 2024

🤖 New release

  • rc-zip: 3.0.0 -> 4.0.0 (⚠️ API breaking changes)
  • rc-zip-sync: 3.0.0 -> 4.0.0 (⚠️ API breaking changes)
  • rc-zip-tokio: 3.0.0 -> 4.0.0 (⚠️ API breaking changes)

⚠️ rc-zip 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.27.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ExtraZip64Field.disk_start in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/extra_field.rs:136
  field Entry.header_offset in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:113
  field Entry.reader_version in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:116
  field Entry.flags in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:125
  field Entry.uid in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:130
  field Entry.gid in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:135
  field Entry.crc32 in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:141
  field Entry.compressed_size in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:144
  field Entry.uncompressed_size in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:149
  field Entry.mode in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/archive.rs:152

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

Failed in:
  enum rc_zip::parse::EntryContents, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/archive.rs:271

--- 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.27.0/src/lints/inherent_method_missing.ron

Failed in:
  Version::host_system, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/version.rs:32
  Version::host, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/version.rs:59
  Version::version, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/version.rs:64
  Version::major, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/version.rs:71
  Version::minor, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/version.rs:78

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

Failed in:
  struct rc_zip::parse::StoredEntry, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/archive.rs:93
  struct rc_zip::parse::ZipString, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/raw.rs:10
  struct rc_zip::parse::StoredEntryInner, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/archive.rs:159
  struct rc_zip::parse::DirectoryHeader, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/directory_header.rs:22
  struct rc_zip::parse::ZipBytes, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/raw.rs:50
  struct rc_zip::parse::LocalFileHeaderRecord, previously in file /tmp/.tmpL0h8Ft/rc-zip/src/parse/local.rs:17

--- failure tuple_struct_to_plain_struct: tuple struct changed to plain struct ---

Description:
A publicly-visible, exhaustive tuple struct with pub fields changed to normal (curly-braces) struct, which cannot be constructed using the same struct literal syntax.
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.27.0/src/lints/tuple_struct_to_plain_struct.ron

Failed in:
  struct Version in /tmp/.tmpI93ulR/rc-zip/rc-zip/src/parse/version.rs:13

⚠️ rc-zip-sync 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.27.0/src/lints/struct_missing.ron

Failed in:
  struct rc_zip_sync::SyncArchive, previously in file /tmp/.tmpL0h8Ft/rc-zip-sync/src/read_zip.rs:92
  struct rc_zip_sync::SyncStoredEntry, previously in file /tmp/.tmpL0h8Ft/rc-zip-sync/src/read_zip.rs:137

⚠️ rc-zip-tokio 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.27.0/src/lints/struct_missing.ron

Failed in:
  struct rc_zip_tokio::AsyncStoredEntry, previously in file /tmp/.tmpL0h8Ft/rc-zip-tokio/src/async_read_zip.rs:149
  struct rc_zip_tokio::AsyncArchive, previously in file /tmp/.tmpL0h8Ft/rc-zip-tokio/src/async_read_zip.rs:104

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

Failed in:
  trait rc_zip_tokio::HasAsyncCursor, previously in file /tmp/.tmpL0h8Ft/rc-zip-tokio/src/async_read_zip.rs:180
  trait rc_zip_tokio::ReadZipWithSizeAsync, previously in file /tmp/.tmpL0h8Ft/rc-zip-tokio/src/async_read_zip.rs:18
  trait rc_zip_tokio::ReadZipAsync, previously in file /tmp/.tmpL0h8Ft/rc-zip-tokio/src/async_read_zip.rs:35
Changelog

rc-zip

4.0.0 - 2024-02-05

Added

  • [breaking] Introduce ReadZipStreaming trait (#62)

Other

  • Remove unused dependencies

rc-zip-sync

4.0.0 - 2024-02-05

Added

  • [breaking] Introduce ReadZipStreaming trait (#62)

Fixed

  • Windows build was failing

Other

  • Remove unused dependencies

rc-zip-tokio

4.0.0 - 2024-02-05

Added

  • [breaking] Introduce ReadZipStreaming trait (#62)


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2024-02-05T21-35-17Z branch from e4f2d40 to 8ff6931 Compare February 5, 2024 21:38
Copy link

codecov bot commented Feb 5, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (d41394e) 76.07% compared to head (e4f2d40) 76.07%.

❗ Current head e4f2d40 differs from pull request most recent head 3598ca1. Consider uploading reports for the commit 3598ca1 to get more accurate results

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #63   +/-   ##
=======================================
  Coverage   76.07%   76.07%           
=======================================
  Files          25       25           
  Lines        2408     2408           
=======================================
  Hits         1832     1832           
  Misses        576      576           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@github-actions github-actions bot force-pushed the release-plz-2024-02-05T21-35-17Z branch from 8ff6931 to de132b6 Compare February 5, 2024 21:42
Signed-off-by: Amos <[email protected]>
@github-actions github-actions bot force-pushed the release-plz-2024-02-05T21-35-17Z branch from de132b6 to 3598ca1 Compare February 5, 2024 21:43
@fasterthanlime fasterthanlime reopened this Feb 5, 2024
@fasterthanlime fasterthanlime enabled auto-merge (squash) February 5, 2024 21:48
@fasterthanlime fasterthanlime merged commit 9dc3975 into main Feb 5, 2024
3 checks passed
@fasterthanlime fasterthanlime deleted the release-plz-2024-02-05T21-35-17Z branch February 5, 2024 21:50
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.

1 participant