Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/thiserror Loading
base: 1.0.31
Choose a base ref
...
head repository: dtolnay/thiserror Loading
compare: 1.0.32
Choose a head ref
  • 14 commits
  • 12 files changed
  • 1 contributor

Commits on May 1, 2022

  1. Ignore type_repetition_in_bounds/trait_duplication_in_bounds clippy f…

    …alse positive
    
    rust-lang/rust-clippy#8771
    
        error: this type has already been used as a bound predicate
          --> impl/src/generics.rs:60:61
           |
        60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
           |                                                             ^^^^^^^^
           |
           = note: `-D clippy::type-repetition-in-bounds` implied by `-D clippy::pedantic`
           = help: consider combining the bounds: `impl ToTokens: ToTokens + ToTokens`
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds
    
        error: this trait bound is already specified in the where clause
          --> impl/src/generics.rs:60:39
           |
        60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
           |                                       ^^^^^^^^
           |
           = note: `-D clippy::trait-duplication-in-bounds` implied by `-D clippy::pedantic`
           = help: consider removing this trait bound
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trait_duplication_in_bounds
    dtolnay committed May 1, 2022
    Configuration menu
    Copy the full SHA
    d5fa929 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2022

  1. Configuration menu
    Copy the full SHA
    6195232 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2022

  1. Configuration menu
    Copy the full SHA
    305b57a View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. Configuration menu
    Copy the full SHA
    829ed49 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2022

  1. Configuration menu
    Copy the full SHA
    799b3d3 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Configuration menu
    Copy the full SHA
    e82ff36 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Use dtolnay/rust-toolchain's miri toolchain

    This defaults to components miri + rust-src.
    dtolnay committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    d2f761f View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2022

  1. Configuration menu
    Copy the full SHA
    b338fe6 View commit details
    Browse the repository at this point in the history
  2. Ignore manual_find clippy lint

        error: manual implementation of `Iterator::find`
          --> impl/src/prop.rs:76:5
           |
        76 | /     for field in fields {
        77 | |         if field.attrs.from.is_some() {
        78 | |             return Some(field);
        79 | |         }
        80 | |     }
        81 | |     None
           | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.attrs.from.is_some())`
           |
           = note: `-D clippy::manual-find` implied by `-D clippy::all`
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find
    
        error: manual implementation of `Iterator::find`
           --> impl/src/prop.rs:105:5
            |
        105 | /     for field in fields {
        106 | |         if field.is_backtrace() {
        107 | |             return Some(field);
        108 | |         }
        109 | |     }
        110 | |     None
            | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.is_backtrace())`
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find
    dtolnay committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    f09771e View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2022

  1. Configuration menu
    Copy the full SHA
    24db929 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. Configuration menu
    Copy the full SHA
    c79f5c9 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Configuration menu
    Copy the full SHA
    8b23fbb View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Configuration menu
    Copy the full SHA
    c1fb583 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.32

    dtolnay committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    8cb98af View commit details
    Browse the repository at this point in the history
Loading