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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.63
Choose a base ref
...
head repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.65
Choose a head ref
  • 10 commits
  • 9 files changed
  • 2 contributors

Commits on Jul 31, 2024

  1. Work around new dead code warning in test

        warning: struct `StructTransparentGeneric` is never constructed
           --> tests/test_generics.rs:161:12
            |
        161 | pub struct StructTransparentGeneric<E>(E);
            |            ^^^^^^^^^^^^^^^^^^^^^^^^
            |
            = note: `#[warn(dead_code)]` on by default
    dtolnay committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    00b3c14 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

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

Commits on Sep 22, 2024

  1. Configuration menu
    Copy the full SHA
    ae1f47e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #322 from oxalica/feat/mark-auto-derived

    Mark `#[automatically_derived]` for generated impls
    dtolnay authored Sep 22, 2024
    Configuration menu
    Copy the full SHA
    023f036 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.64

    dtolnay committed Sep 22, 2024
    Configuration menu
    Copy the full SHA
    84484bc View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Ignore needless_lifetimes clippy lint

        warning: the following explicit lifetimes could be elided: 'a
           --> tests/test_display.rs:152:14
            |
        152 |         impl<'a> Display for Msg<'a> {
            |              ^^                  ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
            = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
            = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
        help: elide the lifetimes
            |
        152 -         impl<'a> Display for Msg<'a> {
        152 +         impl Display for Msg<'_> {
            |
    dtolnay committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    1b15d6e View commit details
    Browse the repository at this point in the history
  2. Resolve extra_unused_lifetimes clippy lint

        warning: this lifetime isn't used in the impl
          --> src/aserror.rs:46:6
           |
        46 | impl<'a, T: Error + 'a> Sealed for T {}
           |      ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
           = note: `-W clippy::extra-unused-lifetimes` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::extra_unused_lifetimes)]`
    dtolnay committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    a72ea77 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    f563b1d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #325 from dtolnay/outdir

    Clean up dep-info files from OUT_DIR
    dtolnay authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    3309b37 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.65

    dtolnay committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    5088592 View commit details
    Browse the repository at this point in the history
Loading