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

Bump pin-project from 0.4.27 to 1.0.2 #2

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 25, 2020

Bumps pin-project from 0.4.27 to 1.0.2.

Release notes

Sourced from pin-project's releases.

1.0.2

See the release notes for a complete list of changes.

1.0.1

1.0.0

  • Remove deprecated #[project], #[project_ref], and #[project_replace] attributes.

    Name the projected type by passing an argument with the same name as the method to the #[pin_project] attribute instead:

    - #[pin_project]
    + #[pin_project(project = EnumProj)]
      enum Enum<T> {
          Variant(#[pin] T),
      }
    
    #[project]
    fn func<T>(x: Pin<&mut Enum<T>>) {
    
    #[project]
    match x.project() {
    
    
    
        Enum::Variant(_) =&gt; { /* ... */ }
    
    
    
    
    
        EnumProj::Variant(_) =&gt; { /* ... */ }
    }
    
    }
  • Remove deprecated Replace argument from #[pin_project] attribute. Use project_replace argument instead.

  • Optimize code generation when used on enums.

  • Raise the minimum supported Rust version of this crate from Rust 1.34 to Rust 1.37.

  • Suppress explicit_outlives_requirements, box_pointers, clippy::large_enum_variant, clippy::pattern_type_mismatch, clippy::implicit_return, and clippy::redundant_pub_crate lints in generated code. (#276, #277, #284)

  • Diagnostic improvements.

  • Changes since the 1.0.0-alpha.1 release:

    1.0.0-alpha.1

    ... (truncated)

    Changelog

    Sourced from pin-project's changelog.

    [1.0.2] - 2020-11-18

    [1.0.1] - 2020-10-15

    [1.0.0] - 2020-10-13

    • Remove deprecated #[project], #[project_ref], and #[project_replace] attributes.

      Name the projected type by passing an argument with the same name as the method to the #[pin_project] attribute instead:

      - #[pin_project]
      + #[pin_project(project = EnumProj)]
        enum Enum<T> {
            Variant(#[pin] T),
        }
      
      #[project]
      fn func<T>(x: Pin<&mut Enum<T>>) {
      
      #[project]
      match x.project() {
      
      
      
          Enum::Variant(_) =&gt; { /* ... */ }
      
      
      
      
      
          EnumProj::Variant(_) =&gt; { /* ... */ }
      }
      
      }
  • Remove deprecated Replace argument from #[pin_project] attribute. Use project_replace argument instead.

  • Optimize code generation when used on enums.

  • Raise the minimum supported Rust version of this crate from Rust 1.34 to Rust 1.37.

  • Suppress explicit_outlives_requirements, box_pointers, clippy::large_enum_variant, clippy::pattern_type_mismatch, clippy::implicit_return, and clippy::redundant_pub_crate lints in generated code. (#276, #277, #284)

  • Diagnostic improvements.

  • Changes since the 1.0.0-alpha.1 release:

    [1.0.0-alpha.1] - 2020-09-22

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    @dependabot @github
    Copy link
    Author

    dependabot bot commented on behalf of github Nov 25, 2020

    The following labels could not be found: A2-insubstantial, B0-silent, C1-low.

    weichweich pushed a commit that referenced this pull request Oct 5, 2021
    * fix monthly tags
    
    * explicitly set GITHUB_TOKEN
    
    * debug
    
    * Update monthly-tag.yml
    
    * Revert "debug"
    
    This reverts commit 041735d and
    9ed6084
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    0 participants