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

Merged
merged 2 commits into from
Nov 30, 2024
Merged

chore: release #113

merged 2 commits into from
Nov 30, 2024

Conversation

fasterthanlime
Copy link
Contributor

@fasterthanlime fasterthanlime commented Nov 29, 2024

🤖 New release

  • merde: 8.1.3 -> 8.1.4 (✓ API compatible changes)
  • merde_core: 8.1.1 -> 9.0.0 (⚠️ API breaking changes)
  • merde_json: 8.0.2 -> 9.0.0 (⚠️ API breaking changes)
  • merde_msgpack: 8.0.2 -> 9.0.0 (⚠️ API breaking changes)
  • merde_yaml: 8.0.2 -> 9.0.0 (⚠️ API breaking changes)

⚠️ merde_core breaking changes

--- failure enum_struct_variant_field_added: pub enum struct variant field added ---

Description:
An enum's exhaustive struct variant has a new field, which has to be included when constructing or matching on this variant.
        ref: https://doc.rust-lang.org/reference/attributes/type_system.html#the-non_exhaustive-attribute
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_struct_variant_field_added.ron

Failed in:
  field help of variant MerdeError::UnexpectedEvent in /tmp/.tmpThbCt0/merde/merde_core/src/error.rs:85

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

Failed in:
  trait merde_core::IntoStatic gained Sized in file /tmp/.tmpThbCt0/merde/merde_core/src/into_static.rs:14
  trait merde_core::DeserializeOwned gained IntoStatic in file /tmp/.tmpThbCt0/merde/merde_core/src/deserialize.rs:246

--- 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 merde_core::Deserializer::put_back in file /tmp/.tmpThbCt0/merde/merde_core/src/deserialize.rs:21

--- 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#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron

Failed in:
  method serialize_sync of trait Serializer, previously in file /tmp/.tmp1jLhqH/merde_core/src/serialize.rs:14
  method serialize of trait Serializer, previously in file /tmp/.tmp1jLhqH/merde_core/src/serialize.rs:19
  method deserialize of trait Deserializer, previously in file /tmp/.tmp1jLhqH/merde_core/src/deserialize.rs:37
  method deserialize_owned of trait Deserializer, previously in file /tmp/.tmp1jLhqH/merde_core/src/deserialize.rs:43

--- failure trait_no_longer_object_safe: trait no longer object safe ---

Description:
Trait is no longer object safe, which breaks `dyn Trait` usage.
        ref: https://doc.rust-lang.org/stable/reference/items/traits.html#object-safety
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_no_longer_object_safe.ron

Failed in:
  trait IntoStatic in file /tmp/.tmpThbCt0/merde/merde_core/src/into_static.rs:14

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

Failed in:
  associated type Serializer::Error, previously at /tmp/.tmp1jLhqH/merde_core/src/serialize.rs:8
  associated type Deserializer::Error, previously at /tmp/.tmp1jLhqH/merde_core/src/deserialize.rs:15

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

Failed in:
  enum merde_json::MerdeJsonError, previously in file /tmp/.tmp1jLhqH/merde_json/src/lib.rs:244

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

Failed in:
  mod merde_json::tokio_io, previously in file /tmp/.tmp1jLhqH/merde_json/src/lib.rs:42

--- 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 merde_json::tokio_io::AsyncWriteWrapper, previously in file /tmp/.tmp1jLhqH/merde_json/src/lib.rs:50

--- 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 merde_json::JsonSerialize, previously in file /tmp/.tmp1jLhqH/merde_json/src/lib.rs:221

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

Failed in:
  enum merde_msgpack::MsgpackError, previously in file /tmp/.tmp1jLhqH/merde_msgpack/src/lib.rs:42

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

Failed in:
  enum merde_yaml::MerdeYamlError, previously in file /tmp/.tmp1jLhqH/merde_yaml/src/lib.rs:26
Changelog

merde

8.1.4 - 2024-11-30

Other

  • remove async versions of things
  • wip dyn serialize
  • Tests pass
  • no errors left?
  • Fix more warnings and errors
  • More!
  • yay other errors
  • Dwip
  • Remove JsonSerialize trait
  • Expose an async Deserializer interface
  • Make Deserializer::next async
  • Move things around re: absorbing merde_time in merde_core
  • Yus

merde_core

9.0.0 - 2024-11-30

Other

  • Introduce DynDeserialize
  • Remove workaround for AFIT does not fulfill the required lifetime, manual RPITIT does rust-lang/rust#133676
  • Mhh
  • Use DynSerialize in merde_json
  • Introduce DynSerialize
  • Rename serialize_sync to serialize
  • remove async versions of things
  • wip dyn serialize
  • More!
  • yay other errors
  • Dwip
  • lift static requirement
  • mhh lifetimes yes
  • mh
  • well that's hard
  • Expose to_tokio_writer
  • Remove JsonSerialize trait
  • Expose an async Deserializer interface
  • Make Deserializer::next async
  • Move things around re: absorbing merde_time in merde_core
  • Yus

merde_json

9.0.0 - 2024-11-30

Other

  • Mhh
  • Use DynSerialize in merde_json
  • Rename serialize_sync to serialize
  • async stuff Does Not Work for now
  • remove async versions of things
  • wip dyn serialize
  • bye bigint
  • Remove unused jiter_lite methods
  • Fix more warnings and errors
  • More!
  • yay other errors
  • Dwip
  • Expose to_tokio_writer
  • Remove JsonSerialize trait
  • Expose an async Deserializer interface
  • Make Deserializer::next async
  • Move things around re: absorbing merde_time in merde_core

merde_msgpack

9.0.0 - 2024-11-30

Other

  • remove async versions of things
  • More!
  • yay other errors
  • Expose an async Deserializer interface
  • Make Deserializer::next async

merde_yaml

9.0.0 - 2024-11-30

Other

  • remove async versions of things
  • More!
  • yay other errors
  • Expose an async Deserializer interface
  • Make Deserializer::next async


This PR was generated with release-plz.

@fasterthanlime fasterthanlime force-pushed the release-plz-2024-11-29T19-11-55Z branch 6 times, most recently from fe10e76 to fbe857c Compare November 30, 2024 17:36
@fasterthanlime fasterthanlime force-pushed the release-plz-2024-11-29T19-11-55Z branch from fbe857c to fff6931 Compare November 30, 2024 17:55
@fasterthanlime fasterthanlime merged commit 592b8a3 into main Nov 30, 2024
2 checks passed
@fasterthanlime fasterthanlime deleted the release-plz-2024-11-29T19-11-55Z branch November 30, 2024 20:04
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